Fix issue with signed/unsigned comparison
authorMarcel Holtmann <marcel@holtmann.org>
Tue, 23 Dec 2008 02:31:21 +0000 (03:31 +0100)
committerMarcel Holtmann <marcel@holtmann.org>
Tue, 23 Dec 2008 02:31:21 +0000 (03:31 +0100)
gdbus/object.c

index 4375ec5..432a8a0 100644 (file)
@@ -59,7 +59,8 @@ static void print_arguments(GString *gstr, const char *sig,
 
        for (i = 0; sig[i]; i++) {
                char type[32];
-               int len, struct_level, dict_level;
+               int struct_level, dict_level;
+               unsigned int len;
                gboolean complete;
 
                complete = FALSE;