mirror of https://github.com/python/cpython
Fix GCC warning about fprintf used without a string literal and
without format arguments.
This commit is contained in:
parent
6d78736177
commit
0b5b8af435
|
@ -112,9 +112,9 @@ usage(int exitcode, char* program)
|
|||
if (exitcode)
|
||||
fprintf(f, "Try `python -h' for more information.\n");
|
||||
else {
|
||||
fprintf(f, usage_1);
|
||||
fprintf(f, usage_2);
|
||||
fprintf(f, usage_3);
|
||||
fputs(usage_1, f);
|
||||
fputs(usage_2, f);
|
||||
fputs(usage_3, f);
|
||||
fprintf(f, usage_4, DELIM);
|
||||
fprintf(f, usage_5, DELIM, PYTHONHOMEHELP);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue