diff options
author | Manish Singh <yosh@src.gnome.org> | 1998-01-02 03:36:27 +0000 |
---|---|---|
committer | Manish Singh <yosh@src.gnome.org> | 1998-01-02 03:36:27 +0000 |
commit | 92610dafdba512ba4db6d2dedbc369e24b69f739 (patch) | |
tree | 4f8b68d5f44f922d9e90f2984df5e55c8f403402 /gdk/gdkpixmap.c | |
parent | 26c35927f709934ee2bdabe59b476956b22d08f3 (diff) | |
download | gtk+-92610dafdba512ba4db6d2dedbc369e24b69f739.tar.gz |
Miscellaneous portability fixes.
-Yosh
Diffstat (limited to 'gdk/gdkpixmap.c')
-rw-r--r-- | gdk/gdkpixmap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdk/gdkpixmap.c b/gdk/gdkpixmap.c index cf95dfc86e..e0f4d580b2 100644 --- a/gdk/gdkpixmap.c +++ b/gdk/gdkpixmap.c @@ -218,10 +218,10 @@ gdk_pixmap_seek_char (FILE *infile, gint gdk_pixmap_read_string (FILE *infile, gchar **buffer, - int *buffer_size) + guint *buffer_size) { gchar c; - gint cnt = 0; + guint cnt = 0; if ((*buffer) == NULL) { |