From: Jiwoong Im Date: Tue, 11 Aug 2015 05:08:34 +0000 (+0900) Subject: Fix typo X-Git-Tag: submit/tizen/20150811.103743~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F44%2F45744%2F3;p=platform%2Fcore%2Fappfw%2Faul-1.git Fix typo Change-Id: I3267a90876299a21edc69d350bf412882f126b94 Signed-off-by: Jiwoong Im --- diff --git a/src/launch_with_result.c b/src/launch_with_result.c index 83d3a2f..2bb35b7 100644 --- a/src/launch_with_result.c +++ b/src/launch_with_result.c @@ -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;