Cosmetics: replace "filename" to "arg" for the name of the argument of
authorStefano Sabatini <stefano.sabatini-lala@poste.it>
Thu, 25 Feb 2010 00:05:01 +0000 (00:05 +0000)
committerStefano Sabatini <stefano.sabatini-lala@poste.it>
Thu, 25 Feb 2010 00:05:01 +0000 (00:05 +0000)
opt_input_file(). More consistent and more clear, as "filename" can be
easily confused with the global "input_filename".

Originally committed as revision 22045 to svn://svn.ffmpeg.org/ffmpeg/trunk

ffprobe.c

index 31bcd3dc7d562be4621bed09dd08ef59ab6c9d3d..7ac20eb4706d9c196b31066e7cb0ea5d2695d951 100644 (file)
--- a/ffprobe.c
+++ b/ffprobe.c
@@ -288,15 +288,15 @@ static void opt_format(const char *arg)
     }
 }
 
-static void opt_input_file(const char *filename)
+static void opt_input_file(const char *arg)
 {
     if (input_filename) {
-        fprintf(stderr, "Input filename already specified: %s\n", filename);
+        fprintf(stderr, "Input filename already specified: %s\n", arg);
         exit(1);
     }
-    if (!strcmp(filename, "-"))
-        filename = "pipe:";
-    input_filename = filename;
+    if (!strcmp(arg, "-"))
+        arg = "pipe:";
+    input_filename = arg;
 }
 
 static void show_help(void)