Fix typo 44/45744/3
authorJiwoong Im <jiwoong.im@samsung.com>
Tue, 11 Aug 2015 05:08:34 +0000 (14:08 +0900)
committerJiwoong Im <jiwoong.im@samsung.com>
Tue, 11 Aug 2015 05:09:47 +0000 (22:09 -0700)
Change-Id: I3267a90876299a21edc69d350bf412882f126b94
Signed-off-by: Jiwoong Im <jiwoong.im@samsung.com>
src/launch_with_result.c

index 83d3a2f..2bb35b7 100644 (file)
@@ -497,7 +497,7 @@ SLPAPI int aul_add_caller_cb(int pid,  void (*caller_cb) (int, void *), void *da
 
        info = __find_resultcb(pid);
        if (info == NULL)
-               return AUL_E_ERROR;
+               return AUL_R_ERROR;
 
        info->caller_cb = caller_cb;
        info->caller_data = data;
@@ -514,7 +514,7 @@ SLPAPI int aul_remove_caller_cb(int pid)
 
        info = __find_resultcb(pid);
        if (info == NULL)
-               return AUL_E_ERROR;
+               return AUL_R_ERROR;
 
        info->caller_cb = NULL;
        info->caller_data = NULL;