From 3a136a06fd498c31de7318e2a495676d357ce58e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Reimar=20D=C3=B6ffinger?= Date: Sun, 13 May 2007 16:26:16 +0000 Subject: [PATCH] Do not use return with argument for a function "returning" void. Originally committed as revision 9016 to svn://svn.ffmpeg.org/ffmpeg/trunk --- vhook/watermark.c | 4 ++-- 1 file 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); } }