From fba59950267c668e462f6a761b2a407b9dacd005 Mon Sep 17 00:00:00 2001 From: tafodinho Date: Wed, 27 Jan 2016 06:34:50 +0100 Subject: [PATCH] Added a format argument to the fprintf function on lines 115, 116, 117 which issued some warnings during the build process --- Modules/main.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Modules/main.c b/Modules/main.c index 6ed2cd7abc..03a7d0acf9 100644 --- a/Modules/main.c +++ b/Modules/main.c @@ -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); + fprintf(f, "%s", usage_1); + fprintf(f, "%s", usage_2); + fprintf(f, "%s", usage_3); fprintf(f, usage_4, DELIM); fprintf(f, usage_5, DELIM, PYTHONHOMEHELP); }