diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2009-05-11 02:48:43 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2009-05-11 02:48:43 +0800 |
commit | 26185023a8319ae52ea44aac672ec5b957761d0f (patch) | |
tree | 2826cba28fc26f64dbef7ec10a075f98d8f93869 /shell | |
parent | 86a591b62cfe5801a274087368776c1e36eab333 (diff) | |
download | gsoc2013-evolution-26185023a8319ae52ea44aac672ec5b957761d0f.tar.gz gsoc2013-evolution-26185023a8319ae52ea44aac672ec5b957761d0f.tar.zst gsoc2013-evolution-26185023a8319ae52ea44aac672ec5b957761d0f.zip |
Fix a compiler warning.
Diffstat (limited to 'shell')
-rw-r--r-- | shell/e-shell-nm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/e-shell-nm.c b/shell/e-shell-nm.c index 7b2f49e236..7696c1809e 100644 --- a/shell/e-shell-nm.c +++ b/shell/e-shell-nm.c @@ -63,7 +63,7 @@ e_shell_network_monitor (DBusConnection *connection G_GNUC_UNUSED, dbus_connection_unref (dbus_connection); dbus_connection = NULL; - g_timeout_add_seconds (3, reinit_dbus, shell); + g_timeout_add_seconds (3, (GSourceFunc) reinit_dbus, shell); return DBUS_HANDLER_RESULT_HANDLED; } |