[glib] g_format_size: Return 'gchar' instead of 'char'



commit 4aff6119812bb1dac40a6fca4833dab0520148d9
Author: Ryan Lortie <desrt desrt ca>
Date:   Wed Jul 20 21:30:03 2011 +0200

    g_format_size: Return 'gchar' instead of 'char'
    
    I meant to do that in the first place.

 glib/gfileutils.h |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/glib/gfileutils.h b/glib/gfileutils.h
index a343270..0e382af 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);



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]