[FFmpeg-cvslog] dshow_pin: dont return a value from a void function
Michael Niedermayer
git at videolan.org
Mon Mar 25 22:17:15 CET 2013
ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Mon Mar 25 22:12:07 2013 +0100| [ea4c99de4cedf4623f3569dd48e153141950b78a] | committer: Michael Niedermayer
dshow_pin: dont return a value from a void function
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=ea4c99de4cedf4623f3569dd48e153141950b78a
---
libavdevice/dshow_pin.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavdevice/dshow_pin.c b/libavdevice/dshow_pin.c
index 4953642..30e4d95 100644
--- a/libavdevice/dshow_pin.c
+++ b/libavdevice/dshow_pin.c
@@ -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);
}
More information about the ffmpeg-cvslog
mailing list