summaryrefslogtreecommitdiff
path: root/gtk/gtklistbox.c
diff options
context:
space:
mode:
authorTimm Bäder <mail@baedert.org>2016-04-16 13:57:08 +0200
committerTimm Bäder <mail@baedert.org>2016-05-12 20:39:39 +0200
commita99213100d0ef9f258d71ebf93caef08542bfd1e (patch)
treec479ea7955536d54328d4aeea3b9c806ef5c1ab2 /gtk/gtklistbox.c
parent4cce90d1e2fbd2fad15066e8229d5f03174055c5 (diff)
downloadgtk+-a99213100d0ef9f258d71ebf93caef08542bfd1e.tar.gz
listbox: Don't compare int to uint
Diffstat (limited to 'gtk/gtklistbox.c')
-rw-r--r--gtk/gtklistbox.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtklistbox.c b/gtk/gtklistbox.c
index 25be5931e3..91c08e361e 100644
--- a/gtk/gtklistbox.c
+++ b/gtk/gtklistbox.c
@@ -3805,7 +3805,7 @@ gtk_list_box_bound_model_changed (GListModel *list,
{
GtkListBox *box = user_data;
GtkListBoxPrivate *priv = BOX_PRIV (user_data);
- gint i;
+ guint i;
while (removed--)
{