Commit ea4c99de authored by Michael Niedermayer's avatar Michael Niedermayer

dshow_pin: dont return a value from a void function

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent a2f7314b
......@@ -358,5 +358,5 @@ libAVMemInputPin_Destroy(libAVMemInputPin *this)
{
libAVPin *pin = (libAVPin *) ((uint8_t *) this - imemoffset);
dshowdebug("libAVMemInputPin_Destroy(%p)\n", this);
return libAVPin_Destroy(pin);
libAVPin_Destroy(pin);
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment