diff options
author | Ted Gould <ted@gould.cx> | 2011-04-04 22:59:32 -0500 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2011-04-04 22:59:32 -0500 |
commit | 5c17122706b1b16b9c10f40f60eb32679f4f53e3 (patch) | |
tree | 815666e3305e7acad3ac1f0db7abeb358bc0d114 | |
parent | 7db402b6a67a54a39125d944441aa84c4b268963 (diff) | |
download | ayatana-indicator-session-5c17122706b1b16b9c10f40f60eb32679f4f53e3.tar.gz ayatana-indicator-session-5c17122706b1b16b9c10f40f60eb32679f4f53e3.tar.bz2 ayatana-indicator-session-5c17122706b1b16b9c10f40f60eb32679f4f53e3.zip |
Removing a g_error so we don't bring the whole kit-and-kaboodle down.
-rw-r--r-- | src/indicator-session.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/indicator-session.c b/src/indicator-session.c index 97e2ce9..e8a2f97 100644 --- a/src/indicator-session.c +++ b/src/indicator-session.c @@ -162,7 +162,7 @@ service_proxy_cb (GObject * object, GAsyncResult * res, gpointer user_data) } if (error != NULL) { - g_error("Could not grab DBus proxy for %s: %s", INDICATOR_SESSION_DBUS_NAME, error->message); + g_warning("Could not grab DBus proxy for %s: %s", INDICATOR_SESSION_DBUS_NAME, error->message); g_error_free(error); return; } |