summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSanjay Kumar Agarwal <sanjay.ka@tizendev.org>2013-03-27 12:56:00 +0900
committerGerrit Code Review <gerrit2@kim11>2013-03-27 12:56:00 +0900
commitde91a55743dd4a66940b139ea40202b6d9ad9e17 (patch)
tree355428e081821208868a1ab585d852517d6bb5a3
parente4680e5523df1fdb60db93ffdef5b960fe7cb97e (diff)
parente85c9f807ac9e6007e1714f7c730f485f0a85858 (diff)
downloadlocations-de91a55743dd4a66940b139ea40202b6d9ad9e17.tar.gz
locations-de91a55743dd4a66940b139ea40202b6d9ad9e17.tar.bz2
locations-de91a55743dd4a66940b139ea40202b6d9ad9e17.zip
Merge "Fix for the issue N_SE-29643." into tizen_2.1
-rw-r--r--src/FLoc_LocationProviderImpl.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/FLoc_LocationProviderImpl.cpp b/src/FLoc_LocationProviderImpl.cpp
index 5bd8c9a..c365863 100644
--- a/src/FLoc_LocationProviderImpl.cpp
+++ b/src/FLoc_LocationProviderImpl.cpp
@@ -953,10 +953,10 @@ void
_LocationProviderImpl::StopRegionMonitoring(void)
{
result r = _AlarmImpl::GetInstance(__regionMonitor.pAlarm.get())->Cancel();
- SysTryReturnVoidResult(NID_LOC, r == E_SUCCESS, r, "[%s] Failed to stop the alarm. Ignored.", GetErrorMessage(r));
+ SysTryLog(NID_LOC, r == E_SUCCESS, "[%s] Failed to stop the alarm. Ignored.", GetErrorMessage(r));
r = __regionMonitor.pTimer->Cancel();
- SysTryReturnVoidResult(NID_LOC, r == E_SUCCESS, r, "[%s] Failed to stop the timer. Ignored.", GetErrorMessage(r));
+ SysTryLog(NID_LOC, r == E_SUCCESS, "[%s] Failed to stop the timer. Ignored.", GetErrorMessage(r));
r = __pLocationManager->StopLocationUpdates(__regionMonitor.reqId);
SysTryReturnVoidResult(NID_LOC, r == E_SUCCESS, r, "[%s] All regions are removed but failed to stop the location updates. Ignored.", GetErrorMessage(r));