Remove unused variable, fixes warning:
utils.c: In function 'dump_format': utils.c:2542: warning: unused variable 'flags' Originally committed as revision 10858 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
		@@ -2539,7 +2539,7 @@ void dump_format(AVFormatContext *ic,
 | 
				
			|||||||
                 const char *url,
 | 
					                 const char *url,
 | 
				
			||||||
                 int is_output)
 | 
					                 int is_output)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
    int i, flags;
 | 
					    int i;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    av_log(NULL, AV_LOG_INFO, "%s #%d, %s, %s '%s':\n",
 | 
					    av_log(NULL, AV_LOG_INFO, "%s #%d, %s, %s '%s':\n",
 | 
				
			||||||
            is_output ? "Output" : "Input",
 | 
					            is_output ? "Output" : "Input",
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user