Fix -Werror=format-security errors.
authorErik de Castro Lopo <erikd@mega-nerd.com>
Mon, 13 Feb 2012 08:58:08 +0000 (19:58 +1100)
committerErik de Castro Lopo <erikd@mega-nerd.com>
Mon, 13 Feb 2012 08:58:08 +0000 (19:58 +1100)
Fixes "format not a string literal and no format arguments
 [-Werror=format-security]" errors.

Patch from Fabian Greffrath <fabian+debian@greffrath.com> via Debian.
Closes Debian bug #643377.

src/test_grabbag/cuesheet/main.c
src/test_grabbag/picture/main.c
src/test_seeking/main.c

index 35506f8..f0cefd2 100644 (file)
@@ -116,12 +116,12 @@ int main(int argc, char *argv[])
        const char *usage = "usage: test_cuesheet cuesheet_file lead_out_offset [ [ sample_rate ] cdda ]\n";
 
        if(argc > 1 && 0 == strcmp(argv[1], "-h")) {
-               printf(usage);
+               printf("%s", usage);
                return 0;
        }
 
        if(argc < 3 || argc > 5) {
-               fprintf(stderr, usage);
+               fprintf(stderr, "%s", usage);
                return 255;
        }
 
@@ -132,7 +132,7 @@ int main(int argc, char *argv[])
                        if(0 == strcmp(argv[4], "cdda"))
                                is_cdda = true;
                        else {
-                               fprintf(stderr, usage);
+                               fprintf(stderr, "%s", usage);
                                return 255;
                        }
                }
index b59afd1..a1880ae 100644 (file)
@@ -211,12 +211,12 @@ int main(int argc, char *argv[])
        const char *usage = "usage: test_pictures path_prefix\n";
 
        if(argc > 1 && 0 == strcmp(argv[1], "-h")) {
-               printf(usage);
+               printf("%s", usage);
                return 0;
        }
 
        if(argc != 2) {
-               fprintf(stderr, usage);
+               fprintf(stderr, "%s", usage);
                return 255;
        }
 
index d1f11d6..589e859 100644 (file)
@@ -418,7 +418,7 @@ int main(int argc, char *argv[])
        static const char * const usage = "usage: test_seeking file.flac [#seeks] [#samples-in-file.flac] [file.raw]\n";
 
        if (argc < 2 || argc > 5) {
-               fprintf(stderr, usage);
+               fprintf(stderr, "%s", usage);
                return 1;
        }