[libnotify] return NULL not FALSE



commit e6a4970a790a158fef9a042a492671a765b936a1
Author: William Jon McCann <jmccann redhat com>
Date:   Mon Nov 15 14:41:25 2010 -0500

    return NULL not FALSE

 libnotify/notify.c |    7 ++++---
 1 files changed, 4 insertions(+), 3 deletions(-)
---
diff --git a/libnotify/notify.c b/libnotify/notify.c
index dad8d9a..e4db6f1 100644
--- a/libnotify/notify.c
+++ b/libnotify/notify.c
@@ -267,7 +267,8 @@ notify_get_server_caps (void)
 
         proxy = _notify_get_proxy (NULL);
         if (proxy == NULL) {
-                return FALSE;
+                g_warning ("Failed to connect to proxy");
+                return NULL;
         }
 
         result = g_dbus_proxy_call_sync (proxy,
@@ -278,11 +279,11 @@ notify_get_server_caps (void)
                                          NULL,
                                          NULL);
         if (result == NULL) {
-                return FALSE;
+                return NULL;
         }
         if (!g_variant_is_of_type (result, G_VARIANT_TYPE ("(as)"))) {
                 g_variant_unref (result);
-                return FALSE;
+                return NULL;
         }
 
         g_variant_get (result, "(^as)", &caps);



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]