Merge "Fix return value when there is no time info" into tizen
authorWonnam Jang <wn.jang@samsung.com>
Thu, 27 Apr 2017 09:04:33 +0000 (09:04 +0000)
committerGerrit Code Review <gerrit@review.ap-northeast-2.compute.internal>
Thu, 27 Apr 2017 09:04:33 +0000 (09:04 +0000)
common/stt_config_mgr.c

index b2d346b..11003a2 100755 (executable)
@@ -1729,7 +1729,7 @@ int stt_config_mgr_foreach_time_info(stt_config_result_time_cb callback, void* u
        ret = stt_parser_get_time_info(&temp_time);
        if (0 != ret) {
                SLOG(LOG_WARN, stt_tag(), "[WARNING] Fail to get time info : %d", ret);
-               return STT_CONFIG_ERROR_OPERATION_FAILED;
+               return STT_CONFIG_ERROR_NONE;
        }
 
        GSList *iter = NULL;