From c0c1ca9b7aa9ec0faf3ecd00fc7baceeb6c30860 Mon Sep 17 00:00:00 2001 From: Javier Jardón Date: Fri, 18 Dec 2020 08:24:25 +0000 Subject: Fix some compilations warnings --- src/msg.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/msg.c') diff --git a/src/msg.c b/src/msg.c index ca14d867..496fe185 100644 --- a/src/msg.c +++ b/src/msg.c @@ -206,8 +206,8 @@ zenity_msg (ZenityData *data, ZenityMsgData *msg_data) { // however, 60 would increase the distance between the icon and the // text, // decreasing to 10 fix it. - gtk_label_set_width_chars (text, 10); - gtk_label_set_max_width_chars (text, 10); + gtk_label_set_width_chars (GTK_LABEL (text), 10); + gtk_label_set_max_width_chars (GTK_LABEL (text), 10); } if (data->modal) -- cgit