summaryrefslogtreecommitdiff
path: root/docs/tools
diff options
context:
space:
mode:
authorHaithem BEN GHORBAL <haithem.benghorbal@gmail.com>2016-02-08 15:09:29 +0100
committerCarlos Garnacho <carlosg@gnome.org>2016-02-14 20:13:55 +0100
commitacc705b48c6ddda3a6c022e376e0d6fbc9636a1d (patch)
treeea4848baa1ec51b6c732be201ac944b81612dcfc /docs/tools
parentb81dc08178042e36cca73b69dde7775db200ad8b (diff)
downloadtracker-acc705b48c6ddda3a6c022e376e0d6fbc9636a1d.tar.gz
docs: Fix less-than-zero comparison of an unsigned value
Diffstat (limited to 'docs/tools')
-rw-r--r--docs/tools/ttlresource2sgml.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/tools/ttlresource2sgml.c b/docs/tools/ttlresource2sgml.c
index 7d51c3171..ae91882f9 100644
--- a/docs/tools/ttlresource2sgml.c
+++ b/docs/tools/ttlresource2sgml.c
@@ -436,7 +436,7 @@ hierarchy_context_resolve_class (HierarchyContext *context,
{
GList *l = g_list_find_custom (context->hierarchy, klass->classname,
(GCompareFunc) g_strcmp0);
- guint pos = g_list_position (context->hierarchy, l);
+ gint pos = g_list_position (context->hierarchy, l);
GList *children, *parents;
gchar *shortname, *link;
HierarchyString *str;