From 75fb2de203206f7a0f76b3ba5241a79e31ef607f Mon Sep 17 00:00:00 2001 From: rbuj Date: Tue, 14 Dec 2021 15:01:06 +0100 Subject: gs-window-x11: Fix -Wshorten-64-to-32 warning --- src/gs-window-x11.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/gs-window-x11.c b/src/gs-window-x11.c index 6274a1b..b6aa859 100644 --- a/src/gs-window-x11.c +++ b/src/gs-window-x11.c @@ -615,11 +615,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 -- cgit v1.2.1