From c6fa3c446cc260ca6b81f2abb0b89a1650f07395 Mon Sep 17 00:00:00 2001 From: Daniel Boles Date: Wed, 20 Jun 2018 20:51:50 +0100 Subject: [PATCH] EmojiCompletion: Avoid another un/signed warning The cherry-pick missed this, I guess. --- gtk/gtkemojicompletion.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk/gtkemojicompletion.c b/gtk/gtkemojicompletion.c index 21738e31e7..62e2b5774f 100644 --- a/gtk/gtkemojicompletion.c +++ b/gtk/gtkemojicompletion.c @@ -434,7 +434,7 @@ get_text (GVariant *emoji_data, gsize length) { GVariant *codes; - int i; + gsize i; char *p; p = text; -- 2.30.2