From dee0e9ab8f63d1b022a7ac011a921db48acc1cd7 Mon Sep 17 00:00:00 2001 From: Scott Balneaves Date: Tue, 13 Nov 2012 21:44:26 -0600 Subject: Fix all compile warnings. --- mate-session/gsm-consolekit.c | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'mate-session/gsm-consolekit.c') diff --git a/mate-session/gsm-consolekit.c b/mate-session/gsm-consolekit.c index c5eadb0..e04ae76 100644 --- a/mate-session/gsm-consolekit.c +++ b/mate-session/gsm-consolekit.c @@ -791,6 +791,12 @@ gsm_consolekit_can_restart (GsmConsolekit *manager) G_TYPE_INVALID, G_TYPE_BOOLEAN, &can_restart, G_TYPE_INVALID); + if (res == FALSE) { + g_warning ("Could not make DBUS call: %s", + error->message); + g_error_free (error); + return FALSE; + } return can_restart; } @@ -819,6 +825,13 @@ gsm_consolekit_can_stop (GsmConsolekit *manager) G_TYPE_BOOLEAN, &can_stop, G_TYPE_INVALID); + if (res == FALSE) { + g_warning ("Could not make DBUS call: %s", + error->message); + g_error_free (error); + return FALSE; + } + return can_stop; } -- cgit v1.2.1