Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJun Zhao <mypopydev@gmail.com>2018-05-06 04:33:28 +0300
committerJun Zhao <jun.zhao@intel.com>2018-05-10 14:28:51 +0300
commit74a7ddd985c487b6645470174228ae2d734e6924 (patch)
treec4edafc17953e74175e5e99d971862cc6193ab35 /libavfilter/tests
parentb30575bc982fd70799f63f2031640b9916f1648d (diff)
lavfi/tests/filtfmts: fix the build warning.
fix the build warning: ignoring return value. Signed-off-by: Jun Zhao <mypopydev@gmail.com>
Diffstat (limited to 'libavfilter/tests')
-rw-r--r--libavfilter/tests/filtfmts.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavfilter/tests/filtfmts.c b/libavfilter/tests/filtfmts.c
index a958621f1c..317df86c55 100644
--- a/libavfilter/tests/filtfmts.c
+++ b/libavfilter/tests/filtfmts.c
@@ -138,9 +138,9 @@ int main(int argc, char **argv)
}
if (filter->query_formats)
- filter->query_formats(filter_ctx);
+ ret = filter->query_formats(filter_ctx);
else
- ff_default_query_formats(filter_ctx);
+ ret = ff_default_query_formats(filter_ctx);
print_formats(filter_ctx);