Commit dd5c7d06 authored by reimar's avatar reimar

Do not use return with argument for a function "returning" void.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@9016 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent aee29698
......@@ -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);
}
}
......
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