humanactivitymonitor_manager.cc:562:9: warning: variable 'ret' set but not used [-Wunused-but-set-variable]
Change-Id: I292f3986556f95a55b33175a8fd9b9d8233befe0
int ret = 0;
ret = system_info_get_platform_bool("http://tizen.org/feature/location.batch", s);
-
+ if (SYSTEM_INFO_ERROR_NONE != ret) {
+ return LogAndCreateResult(ErrorCode::UNKNOWN_ERR,
+ "Failed to get location.batch feature",
+ ("system_info_get_platform_bool error: %d (%s)", ret, get_error_message(ret)));
+ }
return PlatformResult(ErrorCode::NO_ERROR);
}