aboutsummaryrefslogtreecommitdiffstats
path: root/shell
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2009-05-11 02:48:43 +0800
committerMatthew Barnes <mbarnes@redhat.com>2009-05-11 02:48:43 +0800
commit26185023a8319ae52ea44aac672ec5b957761d0f (patch)
tree2826cba28fc26f64dbef7ec10a075f98d8f93869 /shell
parent86a591b62cfe5801a274087368776c1e36eab333 (diff)
downloadgsoc2013-evolution-26185023a8319ae52ea44aac672ec5b957761d0f.tar
gsoc2013-evolution-26185023a8319ae52ea44aac672ec5b957761d0f.tar.gz
gsoc2013-evolution-26185023a8319ae52ea44aac672ec5b957761d0f.tar.bz2
gsoc2013-evolution-26185023a8319ae52ea44aac672ec5b957761d0f.tar.lz
gsoc2013-evolution-26185023a8319ae52ea44aac672ec5b957761d0f.tar.xz
gsoc2013-evolution-26185023a8319ae52ea44aac672ec5b957761d0f.tar.zst
gsoc2013-evolution-26185023a8319ae52ea44aac672ec5b957761d0f.zip
Fix a compiler warning.
Diffstat (limited to 'shell')
-rw-r--r--shell/e-shell-nm.c2
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;
}