summaryrefslogtreecommitdiff
path: root/glib/gfileutils.h
diff options
context:
space:
mode:
authorRyan Lortie <desrt@desrt.ca>2011-07-20 21:30:03 +0200
committerRyan Lortie <desrt@desrt.ca>2011-07-20 21:30:03 +0200
commit4aff6119812bb1dac40a6fca4833dab0520148d9 (patch)
tree3c16ae65e2ccdf9b2079806b4b7dd3245bfdb96d /glib/gfileutils.h
parentef3e5917ca1239b39db2cb433c4306d0152f18f5 (diff)
downloadglib-4aff6119812bb1dac40a6fca4833dab0520148d9.tar.gz
g_format_size: Return 'gchar' instead of 'char'
I meant to do that in the first place.
Diffstat (limited to 'glib/gfileutils.h')
-rw-r--r--glib/gfileutils.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/glib/gfileutils.h b/glib/gfileutils.h
index a34327029..0e382afd1 100644
--- a/glib/gfileutils.h
+++ b/glib/gfileutils.h
@@ -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);