Fix wrong error handling 99/49399/2
authorYoumin Ha <youmin.ha@samsung.com>
Tue, 13 Oct 2015 04:59:44 +0000 (13:59 +0900)
committerSuchang Woo <suchang.woo@samsung.com>
Tue, 13 Oct 2015 08:27:04 +0000 (01:27 -0700)
tlm_seat_*() functions return TRUE on success, but the error handling
routine works wrong. This commit fixes it.

Change-Id: I12d32bff7460398b73e5a1aa512188456f13a3da

src/daemon/tlm-dbus-observer.c

index 42c7847..c57f690 100644 (file)
@@ -527,8 +527,8 @@ _finished:
         _complete_request (self, req, err);
     }
 
-    if (ret) {
-        WARN("The request is not processed. Return value=%d", ret);
+    if (ret != TRUE) {
+        WARN("The request is not processed well");
     }
 
     return G_SOURCE_REMOVE;