summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorCarlos Garnacho <carlosg@gnome.org>2022-08-28 12:14:40 +0200
committerCarlos Garnacho <carlosg@gnome.org>2022-08-30 16:56:47 +0000
commit9d22a62e80d073e8cf108002d0651846d242062c (patch)
treeab1d68d5b4ec960fcce44cdfa486f688644e297e /docs
parentae15b346c6448111bfbc378629bfe3ea599095e7 (diff)
downloadtracker-9d22a62e80d073e8cf108002d0651846d242062c.tar.gz
docs: Use correct integer type for iterator
Fixes a compiler warning.
Diffstat (limited to 'docs')
-rw-r--r--docs/tools/tracker-docgen-xml.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/tools/tracker-docgen-xml.c b/docs/tools/tracker-docgen-xml.c
index 5751a93ec..d39f8a86d 100644
--- a/docs/tools/tracker-docgen-xml.c
+++ b/docs/tools/tracker-docgen-xml.c
@@ -63,7 +63,7 @@ print_class_hierarchy (FILE *f,
{
GPtrArray *strings;
const gchar *id;
- gint i;
+ guint i;
strings = class_get_parent_hierarchy_strings (klass, model);