diff options
| -rw-r--r-- | cgg.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -66,7 +66,7 @@ parse_cmd (int argc, char* argv[], char **source_dir, char **dst_dir, gboolean * if (argc == 1) { s1 = g_option_context_get_help (context, TRUE, NULL); - g_print (s1); + g_print ("%s", s1); g_free (s1); g_option_context_free (context); return FALSE; @@ -75,7 +75,7 @@ parse_cmd (int argc, char* argv[], char **source_dir, char **dst_dir, gboolean * if (! g_option_context_parse (context, &argc, &argv, &error)) { g_print ("option parsing failed: %s\n", error->message); s1 = g_option_context_get_help (context, TRUE, NULL); - g_print (s1); + g_print ("%s", s1); g_free (s1); g_option_context_free (context); return FALSE; |
