diff options
author | Jun Zhao <mypopydev@gmail.com> | 2018-05-06 09:33:28 +0800 |
---|---|---|
committer | Jun Zhao <jun.zhao@intel.com> | 2018-05-10 19:28:51 +0800 |
commit | 74a7ddd985c487b6645470174228ae2d734e6924 (patch) | |
tree | c4edafc17953e74175e5e99d971862cc6193ab35 /libavfilter/tests | |
parent | b30575bc982fd70799f63f2031640b9916f1648d (diff) | |
download | ffmpeg-74a7ddd985c487b6645470174228ae2d734e6924.tar.gz |
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.c | 4 |
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); |