Changes made due to change in Dlog API format 76/196976/1 accepted/tizen_5.5_unified accepted/tizen_5.5_unified_mobile_hotfix accepted/tizen_5.5_unified_wearable_hotfix accepted/tizen_6.0_unified accepted/tizen_6.0_unified_hotfix tizen_5.5 tizen_5.5_mobile_hotfix tizen_5.5_tv tizen_5.5_wearable_hotfix tizen_6.0 tizen_6.0_hotfix accepted/tizen/5.5/unified/20191031.032602 accepted/tizen/5.5/unified/mobile/hotfix/20201027.060710 accepted/tizen/5.5/unified/wearable/hotfix/20201027.091852 accepted/tizen/6.0/unified/20201030.102755 accepted/tizen/6.0/unified/hotfix/20201103.045955 accepted/tizen/unified/20190109.060102 submit/tizen/20190108.193512 submit/tizen/20200205.125014 submit/tizen_5.5/20191031.000009 submit/tizen_5.5/20191031.000011 submit/tizen_5.5/20191031.000013 submit/tizen_5.5_mobile_hotfix/20201026.1851010 submit/tizen_5.5_mobile_hotfix/20201027.114301 submit/tizen_5.5_wearable_hotfix/20201026.1843010 submit/tizen_5.5_wearable_hotfix/20201027.114701 submit/tizen_6.0/20201029.205505 submit/tizen_6.0_hotfix/20201102.192905 submit/tizen_6.0_hotfix/20201103.115105 tizen_5.5.m2_release tizen_6.0.m2_release
authorTezaswy Singh <tezaswy.s@samsung.com>
Tue, 8 Jan 2019 16:59:30 +0000 (22:29 +0530)
committerTezaswy Singh <tezaswy.s@samsung.com>
Tue, 8 Jan 2019 16:59:30 +0000 (22:29 +0530)
Change-Id: I8fd420ba7a45107ed563086fc6f2b75f5fd099e6

clock-viewer/src/clock-viewer-default-clock-fallback.c
clock-viewer/src/clock-viewer-default-clock.c
default-clock/src/digital.c

index da0a71657e6fd32e22aa43d6b2f73efb07b5959f..5781447fe7fbd5ff7c14b67d5dc1749339e952ab 100644 (file)
@@ -466,7 +466,7 @@ static int _clock_viewer_default_clock_fallback_get_formatted_ampm_from_utc_time
        (*ampm_len) = u_strlen(u_formatted_str);
 
        buf = u_austrncpy(buf, u_formatted_str, buf_len);
-       _SDBG("ampm[%d][%s][%d]", formatted_str_len, buf, intime);
+       _SDBG("ampm[%d][%s][%ld]", formatted_str_len, buf, intime);
 
        return 0;
 }
@@ -499,7 +499,7 @@ static int _clock_viewer_default_clock_fallback_get_formatted_time_from_utc_time
        }
 
        buf = u_austrncpy(buf, u_formatted_str, buf_len);
-       _SDBG("time[%d][%s][%d]", formatted_str_len, buf, intime);
+       _SDBG("time[%d][%s][%ld]", formatted_str_len, buf, intime);
 
        return 0;
 }
index e5516058176917374a4f4373b877d5c1c6bf64ba..e92e068ae03a779312b287758fd484152bfc40b6 100644 (file)
@@ -208,7 +208,7 @@ HAPI int clock_viewer_default_clock_resume(void *data)
                s_default_clock_info.alarm_id = 0;
        }
 
-       _DBG("Add alarm start[%d], interval[%d]", start, interval);
+       _DBG("Add alarm start[%ld], interval[%ld]", start, interval);
 
        s_default_clock_info.alarm_id = clock_viewer_util_alarm_add(start, interval, __clock_viewer_default_clock_alarm_cb, data);
        if (s_default_clock_info.alarm_id == 0) {
index fdfb5fd131f4db296d1d49556252daa7083d337c..0a4676aa6b2855dfc9226087135b1505f6c6ca24 100644 (file)
@@ -622,7 +622,7 @@ static int __get_formatted_ampm_from_utc_time(void *data, time_t intime, char *b
        (*ampm_len) = u_strlen(u_formatted_str);
 
        buf = u_austrncpy(buf, u_formatted_str, buf_len);
-       _SECURE_D("ampm:(%d)[%s][%d]", formatted_str_len, buf, intime);
+       _SECURE_D("ampm:(%d)[%s][%ld]", formatted_str_len, buf, intime);
 
        return 0;
 }
@@ -660,7 +660,7 @@ static int __get_formatted_time_from_utc_time(void *data, time_t intime, char *b
                _E("formatted_str_len is less than 0");
 
        buf = u_austrncpy(buf, u_formatted_str, buf_len);
-       _SECURE_D("time:(%d)[%s][%d]", formatted_str_len, buf, intime);
+       _SECURE_D("time:(%d)[%s][%ld]", formatted_str_len, buf, intime);
 
        return 0;
 }