Merge branch 'mcatanzaro/sign-compare' into 'master'

Fix -Wsign-compare warning

See merge request GNOME/gvdb!7
This commit is contained in:
Philip Withnall 2019-06-24 13:34:10 +00:00
commit f586fa04c1

View File

@ -351,10 +351,10 @@ gvdb_table_get_names (GvdbTable *table,
gsize *length) gsize *length)
{ {
gchar **names; gchar **names;
gint n_names; guint n_names;
gint filled; guint filled;
gint total; guint total;
gint i; guint i;
/* We generally proceed by iterating over the list of items in the /* We generally proceed by iterating over the list of items in the
* hash table (in order of appearance) recording them into an array. * hash table (in order of appearance) recording them into an array.