google: Fix a gcc warning in the Google backend
authorPhilip Withnall <philip@tecnocode.co.uk>
Sat, 19 May 2012 22:16:27 +0000 (23:16 +0100)
committerPhilip Withnall <philip@tecnocode.co.uk>
Sat, 19 May 2012 22:16:27 +0000 (23:16 +0100)
Signed/Unsigned comparison.

addressbook/backends/google/e-book-backend-google.c

index 3e6ace0..5b94625 100644 (file)
@@ -930,7 +930,7 @@ map_google_with_evo_group (const gchar *group_name,
                { GDATA_CONTACTS_GROUP_FAMILY,    N_("Family")   }, /* System Group: Family */
                { GDATA_CONTACTS_GROUP_COWORKERS, N_("Coworkers") } /* System Group: Coworkers */
        };
-       gint ii;
+       guint ii;
 
        if (!group_name)
                return NULL;