summaryrefslogtreecommitdiff
path: root/gobject/gobjectnotifyqueue.c
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2005-11-28 20:33:53 +0000
committerMatthias Clasen <matthiasc@src.gnome.org>2005-11-28 20:33:53 +0000
commitd98433b85e26a43506d0f149a8a994717ca9ce05 (patch)
tree33dcba7fa883cf5076bdcb353fe52c6564735728 /gobject/gobjectnotifyqueue.c
parent0f1e8fb313e7b1539499ee430288644ab375980b (diff)
downloadglib-d98433b85e26a43506d0f149a8a994717ca9ce05.tar.gz
Silence compiler warnings.
2005-11-28 Matthias Clasen <mclasen@redhat.com> * gobjectnotifyqueue.c (g_object_notify_queue_thaw): * gobject-query.c (main): Silence compiler warnings. * glib-genmarshal.c (main): Use G_N_ELEMENTS.
Diffstat (limited to 'gobject/gobjectnotifyqueue.c')
-rw-r--r--gobject/gobjectnotifyqueue.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gobject/gobjectnotifyqueue.c b/gobject/gobjectnotifyqueue.c
index e02e6d053..65c8e9546 100644
--- a/gobject/gobjectnotifyqueue.c
+++ b/gobject/gobjectnotifyqueue.c
@@ -106,7 +106,7 @@ g_object_notify_queue_thaw (GObject *object,
for (slist = nqueue->pspecs; slist; slist = slist->next)
{
GParamSpec *pspec = slist->data;
- gint i = 0;
+ guint i = 0;
/* dedup, make pspecs in the list unique */
redo_dedup_check: