diff options
author | Ting-Wei Lan <lantw@src.gnome.org> | 2016-07-16 21:12:08 +0800 |
---|---|---|
committer | Mike Gorse <mgorse@suse.com> | 2016-09-14 12:15:37 -0500 |
commit | f66c04544575532849a60b1d145fd69fc0261352 (patch) | |
tree | 855cfa9f6e124c8ced463250903a55c2cf8699e7 /bus | |
parent | 89aefc9b009326f061df0b152c103ea860f48f75 (diff) | |
download | at-spi2-core-f66c04544575532849a60b1d145fd69fc0261352.tar.gz |
Fix return value error in session_manager_connect
https://bugzilla.gnome.org/show_bug.cgi?id=768881
Diffstat (limited to 'bus')
-rw-r--r-- | bus/at-spi-bus-launcher.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bus/at-spi-bus-launcher.c b/bus/at-spi-bus-launcher.c index 9a17c50b..51251808 100644 --- a/bus/at-spi-bus-launcher.c +++ b/bus/at-spi-bus-launcher.c @@ -254,7 +254,7 @@ session_manager_connect (A11yBusLauncher *app) g_warning ("Failed to get session manager proxy: %s", error->message); g_error_free (error); - return; + return FALSE; } g_dbus_proxy_call (sm_proxy, |