Commit 78638628 authored by Diego Biurrun's avatar Diego Biurrun

Mark conditionally used variable as av_unused, fixes the warning:

cmdutils.c:576: warning: unused variable ‘filter’

Originally committed as revision 20943 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 8b086712
......@@ -573,7 +573,7 @@ void show_protocols(void)
void show_filters(void)
{
AVFilter **filter = NULL;
AVFilter av_unused(**filter) = NULL;
printf("Filters:\n");
#if CONFIG_AVFILTER
......
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