Skip to content
Snippets Groups Projects
Commit ea4c99de authored by Michael Niedermayer's avatar Michael Niedermayer
Browse files

dshow_pin: dont return a value from a void function


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