From d43e9dca1088b28ec073d49a9e42686f9f27c100 Mon Sep 17 00:00:00 2001 From: rbuj Date: Tue, 14 Dec 2021 15:01:06 +0100 Subject: [PATCH] gs-window-x11: Fix -Wshorten-64-to-32 warning --- src/gs-window-x11.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/gs-window-x11.c b/src/gs-window-x11.c index 218a37ed..823dfc33 100644 --- a/src/gs-window-x11.c +++ b/src/gs-window-x11.c @@ -617,11 +617,11 @@ remove_watchdog_timer (GSWindow *window) static void add_watchdog_timer (GSWindow *window, - glong timeout) + guint timeout) { window->priv->watchdog_timer_id = g_timeout_add (timeout, - (GSourceFunc)watchdog_timer, - window); + (GSourceFunc)watchdog_timer, + window); } static void