Use g_print to print out --help text in locale encoding. (#469551, Takao
authorMatthias Clasen <mclasen@redhat.com>
Fri, 23 Nov 2007 05:58:51 +0000 (05:58 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Fri, 23 Nov 2007 05:58:51 +0000 (05:58 +0000)
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

ChangeLog
glib/goption.c

index 2f1276b..9c8cd6e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+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
index c1e6068..9d8084b 100644 (file)
@@ -772,7 +772,7 @@ print_help (GOptionContext *context,
   gchar *help;
 
   help = g_option_context_get_help (context, main_help, group);
-  g_printf (help);
+  g_print ("%s", help);
   g_free (help);
 
   exit (0);