2007-11-23 Matthias Clasen <mclasen@redhat.com>
* glib/goption.c: Use g_print to print out --help text in
locale encoding. (#469551, Takao Fujiwara)
svn path=/trunk/; revision=5916
+2007-11-23 Matthias Clasen <mclasen@redhat.com>
+
+ * glib/goption.c: Use g_print to print out --help text in
+ locale encoding. (#469551, Takao Fujiwara)
+
2007-11-22 Matthias Clasen <mclasen@redhat.com>
* glib/gkeyfile.c: Set length out param in list-returning functions
gchar *help;
help = g_option_context_get_help (context, main_help, group);
- g_printf (help);
+ g_print ("%s", help);
g_free (help);
exit (0);