Fix -Werror=format-security errors.

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.
This commit is contained in:
Erik de Castro Lopo
2012-02-13 19:58:08 +11:00
parent e38026a52c
commit a4ffcc0239
3 changed files with 6 additions and 6 deletions

View 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;
}