mirror of
https://github.com/claunia/flac.git
synced 2025-12-16 18:54:26 +00:00
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:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user