Skip to content

Commit

Permalink
gs-watcher-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 d64b1fa commit 39c3ee6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/gs-watcher-x11.c
Expand Up @@ -89,11 +89,11 @@ remove_watchdog_timer (GSWatcher *watcher)

static void
add_watchdog_timer (GSWatcher *watcher,
glong timeout)
guint timeout)
{
watcher->priv->watchdog_timer_id = g_timeout_add (timeout,
(GSourceFunc)watchdog_timer,
watcher);
(GSourceFunc)watchdog_timer,
watcher);
}

static void
Expand Down

0 comments on commit 39c3ee6

Please sign in to comment.