From: Matthias Clasen Date: Sat, 16 Dec 2006 04:05:32 +0000 (+0000) Subject: Make ref_count a gint to avoid compiler warnings. (#321977, Andrew X-Git-Url: http://git.openbox.org/?a=commitdiff_plain;h=4efa98d75b3cabef27c04b6554c8f49d34331a92;p=dana%2Fcg-glib.git Make ref_count a gint to avoid compiler warnings. (#321977, Andrew 2006-12-15 Matthias Clasen * glib/giochannel.h: Make ref_count a gint to avoid compiler warnings. (#321977, Andrew Paprocki) --- diff --git a/ChangeLog b/ChangeLog index 982ad063..7bc4c889 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2006-12-15 Matthias Clasen + * glib/giochannel.h: Make ref_count a gint to avoid + compiler warnings. (#321977, Andrew Paprocki) + * configure.in: On Solaris, set CFLAGS and LDFLAGS that work both with Sun cc and gcc. (#315061, Lazlo Peter) diff --git a/glib/giochannel.h b/glib/giochannel.h index aa812be4..846c9ba4 100644 --- a/glib/giochannel.h +++ b/glib/giochannel.h @@ -104,7 +104,7 @@ typedef enum struct _GIOChannel { /*< private >*/ - guint ref_count; + gint ref_count; GIOFuncs *funcs; gchar *encoding;