g_format_size: Return 'gchar' instead of 'char'

I meant to do that in the first place.
This commit is contained in:
Ryan Lortie 2011-07-20 21:30:03 +02:00
parent ef3e5917ca
commit 4aff611981

View File

@ -117,9 +117,9 @@ typedef enum
G_FORMAT_SIZE_LONG_FORMAT G_FORMAT_SIZE_LONG_FORMAT
} GFormatSizeFlags; } GFormatSizeFlags;
char * g_format_size_full (guint64 size, gchar * g_format_size_full (guint64 size,
GFormatSizeFlags flags); GFormatSizeFlags flags);
char * g_format_size (guint64 size); gchar * g_format_size (guint64 size);
#ifndef G_DISABLE_DEPRECATED #ifndef G_DISABLE_DEPRECATED
char *g_format_size_for_display (goffset size); char *g_format_size_for_display (goffset size);