From 8d9ebe9e4e3d301c24ab36418f731704136b6f0a Mon Sep 17 00:00:00 2001 From: Jiwoong Im Date: Tue, 11 Aug 2015 14:08:34 +0900 Subject: [PATCH] Fix typo Change-Id: I3267a90876299a21edc69d350bf412882f126b94 Signed-off-by: Jiwoong Im --- src/launch_with_result.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; -- 2.7.4