[UTC][base-utils][Non-ACR][Ucalendar-Octal constant '00' changed to '0']
authorTomasz Bochenski <t.bochenski@samsung.com>
Tue, 18 Oct 2016 10:58:16 +0000 (12:58 +0200)
committerjihun park <jihun87.park@samsung.com>
Mon, 31 Oct 2016 02:32:46 +0000 (11:32 +0900)
Change-Id: I82f7dc081b5c77b5fcfe612156473ca46a7b8fc3
Signed-off-by: Tomasz Bochenski <t.bochenski@samsung.com>
src/utc/base-utils/utc-capi-base-utils-ucalendar.c

index 93df4fe..892d303 100755 (executable)
@@ -1469,7 +1469,7 @@ int utc_capi_base_utils_i18n_ucalendar_is_weekend_p(void)
     assert_eq(ret, I18N_ERROR_NONE);
 
     // Set date to the non-weekend date e.g. Fri 16:34 12 June 2015
-    i18n_ucalendar_set_date_time(g_cal, 2015, I18N_UCALENDAR_JUNE, 12, 16, 34, 00);
+    i18n_ucalendar_set_date_time(g_cal, 2015, I18N_UCALENDAR_JUNE, 12, 16, 34, 0);
 
     i18n_udate date;
     ret = i18n_ucalendar_get_milliseconds(g_cal, &date);
@@ -1484,7 +1484,7 @@ int utc_capi_base_utils_i18n_ucalendar_is_weekend_p(void)
     assert_eq(ret, I18N_ERROR_NONE);
 
     // Set date to the weekend date e.g. Sat 16:34 13 June 2015
-    i18n_ucalendar_set_date_time(g_cal, 2015, I18N_UCALENDAR_JUNE, 13, 16, 34, 00);
+    i18n_ucalendar_set_date_time(g_cal, 2015, I18N_UCALENDAR_JUNE, 13, 16, 34, 0);
 
     ret = i18n_ucalendar_get_milliseconds(g_cal, &date);
     assert_eq(ret, I18N_ERROR_NONE);