From: Matthias Clasen Date: Wed, 29 Jan 2020 09:44:25 +0000 (+0100) Subject: Silence a compiler warning X-Git-Tag: archive/raspbian/4.4.1+ds1-2+rpi1^2~18^2~20^2~135^2~4 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=c3421cea25e5f1b7817a50e9de80b0208907459a;p=gtk4.git Silence a compiler warning --- diff --git a/gtk/gtktextbtree.c b/gtk/gtktextbtree.c index a4f9b5398f..db7d3485e3 100644 --- a/gtk/gtktextbtree.c +++ b/gtk/gtktextbtree.c @@ -5701,7 +5701,8 @@ tag_changed_cb (GtkTextTagTable *table, while (view != NULL) { - gint width, height; + int width = 0; + int height = 0; _gtk_text_btree_get_view_size (tree, view->view_id, &width, &height); gtk_text_layout_changed (view->layout, 0, height, height);