From 2f0f9a87d0e8d27ce6ad5b81134d01b9d2392cd1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20B=C5=93sch?= Date: Mon, 21 Nov 2011 07:50:03 +0100 Subject: Fix various if parenthesis misplacements. --- doc/examples/filtering.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc/examples') diff --git a/doc/examples/filtering.c b/doc/examples/filtering.c index 3ed6aa3..06e5130 100644 --- a/doc/examples/filtering.c +++ b/doc/examples/filtering.c @@ -173,7 +173,7 @@ int main(int argc, char **argv) av_register_all(); avfilter_register_all(); - if ((ret = open_input_file(argv[1]) < 0)) + if ((ret = open_input_file(argv[1])) < 0) goto end; if ((ret = init_filters(filter_descr)) < 0) goto end; -- cgit v1.1