EmojiCompletion: Avoid another un/signed warning
authorDaniel Boles <dboles.src@gmail.com>
Wed, 20 Jun 2018 19:51:50 +0000 (20:51 +0100)
committerDaniel Boles <dboles.src@gmail.com>
Wed, 20 Jun 2018 19:51:50 +0000 (20:51 +0100)
The cherry-pick missed this, I guess.

gtk/gtkemojicompletion.c

index 21738e31e7abc026f1b5c705284d8df89d313aea..62e2b5774f1e8fa359accdaee7e57d14d2d62cb2 100644 (file)
@@ -434,7 +434,7 @@ get_text (GVariant *emoji_data,
           gsize     length)
 {
   GVariant *codes;
-  int i;
+  gsize i;
   char *p;
 
   p = text;