summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilip Withnall <philip@tecnocode.co.uk>2019-06-24 13:34:10 +0000
committerPhilip Withnall <philip@tecnocode.co.uk>2019-06-24 13:34:10 +0000
commitf586fa04c1bf5247cfecfecbf243655694452417 (patch)
treed6a94950bb7702b2510fa7fdd8413a87b74253bc
parent8696b6bbb7571e6d62a2f5a8dfcd0eae57b36fd8 (diff)
parent18a0d95aa21f5007a330c00d7d25412695525bf1 (diff)
downloadgvdb-f586fa04c1bf5247cfecfecbf243655694452417.tar.gz
Merge branch 'mcatanzaro/sign-compare' into 'master'
Fix -Wsign-compare warning See merge request GNOME/gvdb!7
-rw-r--r--gvdb-reader.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/gvdb-reader.c b/gvdb-reader.c
index ccae40e..2dbb5b4 100644
--- a/gvdb-reader.c
+++ b/gvdb-reader.c
@@ -351,10 +351,10 @@ gvdb_table_get_names (GvdbTable *table,
gsize *length)
{
gchar **names;
- gint n_names;
- gint filled;
- gint total;
- gint i;
+ guint n_names;
+ guint filled;
+ guint total;
+ guint i;
/* We generally proceed by iterating over the list of items in the
* hash table (in order of appearance) recording them into an array.