diff options
author | Ted Gould <ted@gould.cx> | 2010-09-03 13:55:24 -0500 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2010-09-03 13:55:24 -0500 |
commit | 8da28b3879756db8419cad31e589c7448b19ea7c (patch) | |
tree | 6b74fd41887da3e3f964c6e64bbbdf068c7b83fd /src/users-service-dbus.c | |
parent | e8435163c2483585d11f7e31e95ba9c4d319d8a0 (diff) | |
parent | 911d220d42c0bb61caf1a528a353b7a085370c85 (diff) | |
download | ayatana-indicator-session-8da28b3879756db8419cad31e589c7448b19ea7c.tar.gz ayatana-indicator-session-8da28b3879756db8419cad31e589c7448b19ea7c.tar.bz2 ayatana-indicator-session-8da28b3879756db8419cad31e589c7448b19ea7c.zip |
* Upstream Merge
* Ignoring an invalid error message (LP: #611257)
Diffstat (limited to 'src/users-service-dbus.c')
-rw-r--r-- | src/users-service-dbus.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/users-service-dbus.c b/src/users-service-dbus.c index 58490de..11ee497 100644 --- a/src/users-service-dbus.c +++ b/src/users-service-dbus.c @@ -172,7 +172,7 @@ users_service_dbus_init (UsersServiceDbus *self) priv->system_bus = dbus_g_bus_get (DBUS_BUS_SYSTEM, &error); if (error != NULL) { - g_error ("Unable to get system bus: %s", error->message); + g_error ("Unable to get system bus"); g_error_free(error); return; |