diff options
author | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2007-05-13 16:26:16 +0000 |
---|---|---|
committer | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2007-05-13 16:26:16 +0000 |
commit | 3a136a06fd498c31de7318e2a495676d357ce58e (patch) | |
tree | 51d040fa51cede1568eb13711969cc33f13c472d /vhook | |
parent | 43c7c7c7cfd5c176cef71ea7c1733e7bfa69787c (diff) | |
download | ffmpeg-3a136a06fd498c31de7318e2a495676d357ce58e.tar.gz |
Do not use return with argument for a function "returning" void.
Originally committed as revision 9016 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'vhook')
-rw-r--r-- | vhook/watermark.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vhook/watermark.c b/vhook/watermark.c index aa6fee63c2..3d8313aa59 100644 --- a/vhook/watermark.c +++ b/vhook/watermark.c @@ -435,9 +435,9 @@ void Process(void *ctx, { ContextInfo *ci = (ContextInfo *) ctx; if (1 == ci->mode) { - return Process1(ctx, picture, pix_fmt, src_width, src_height, pts); + Process1(ctx, picture, pix_fmt, src_width, src_height, pts); } else { - return Process0(ctx, picture, pix_fmt, src_width, src_height, pts); + Process0(ctx, picture, pix_fmt, src_width, src_height, pts); } } |