Replace printfs with "%s" format strings with puts.

Thanks to Elan Ruusamäe for the suggestion.
This commit is contained in:
Erik de Castro Lopo
2012-11-13 17:25:32 +11:00
parent 1f0daccf2b
commit 86efeb5903
4 changed files with 7 additions and 7 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, "%s", usage);
fputs(usage, stderr);
return 1;
}