Commit af8ae3d9 authored by diego's avatar diego

Mark conditionally used variable as av_unused, fixes the warning:

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


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