Fix build error for ICU 59 46/169046/2 accepted/tizen/unified/20180206.164615 submit/tizen/20180206.012419
authorHyunjee Kim <hj0426.kim@samsung.com>
Fri, 2 Feb 2018 04:59:24 +0000 (13:59 +0900)
committerhyunjee Kim <hj0426.kim@samsung.com>
Tue, 6 Feb 2018 01:17:57 +0000 (01:17 +0000)
Change-Id: I3cb08b16978e3d3dfe86089e77c6422dd44280df
Signed-off-by: Hyunjee Kim <hj0426.kim@samsung.com>
src/utils_i18n_timezone.cpp

index bec85fb..1b582bb 100755 (executable)
@@ -206,7 +206,7 @@ int i18n_timezone_create_default(i18n_timezone_h *timezone)
        char* zoneInfo = NULL;
        UnicodeString TimezoneID;
        ((TimeZone *) *timezone)->getID(TimezoneID);
-       const UChar *tid = TimezoneID.getTerminatedBuffer();
+       const i18n_uchar *tid = (i18n_uchar *)TimezoneID.getTerminatedBuffer();
        char tzpath[1024];
        int32_t ret = (int32_t) readlink(TZDEFAULT, tzpath, sizeof(tzpath) - 1);
        if(ret > 0)