g_format_size: Return 'gchar' instead of 'char'
authorRyan Lortie <desrt@desrt.ca>
Wed, 20 Jul 2011 19:30:03 +0000 (21:30 +0200)
committerRyan Lortie <desrt@desrt.ca>
Wed, 20 Jul 2011 19:30:03 +0000 (21:30 +0200)
I meant to do that in the first place.

glib/gfileutils.h

index a343270..0e382af 100644 (file)
@@ -117,9 +117,9 @@ typedef enum
   G_FORMAT_SIZE_LONG_FORMAT
 } GFormatSizeFlags;
 
-char *  g_format_size_full   (guint64          size,
+gchar * g_format_size_full   (guint64          size,
                               GFormatSizeFlags flags);
-char *  g_format_size        (guint64          size);
+gchar * g_format_size        (guint64          size);
 
 #ifndef G_DISABLE_DEPRECATED
 char *g_format_size_for_display (goffset size);