Skip to content

Commit

Permalink
gs-window-x11: Fix -Wshorten-64-to-32 warning
Browse files Browse the repository at this point in the history
  • Loading branch information
rbuj committed Dec 14, 2021
1 parent 39c3ee6 commit d43e9dc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/gs-window-x11.c
Expand Up @@ -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
Expand Down

0 comments on commit d43e9dc

Please sign in to comment.