From 28772efa7baf983c300b08230a14a3d9e66d3232 Mon Sep 17 00:00:00 2001 From: George Rhoten Date: Sat, 1 Sep 2001 01:13:50 +0000 Subject: [PATCH] ICU-770 Use the invariant converter X-SVN-Rev: 5677 --- icu4c/source/i18n/calendar.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/icu4c/source/i18n/calendar.cpp b/icu4c/source/i18n/calendar.cpp index 9245a75fd13..3db7126a824 100644 --- a/icu4c/source/i18n/calendar.cpp +++ b/icu4c/source/i18n/calendar.cpp @@ -712,7 +712,7 @@ int32_t Calendar::stringToDayNumber(const UnicodeString& string, UErrorCode& sta } char *end; - string.extract(0, len, number); + string.extract(0, len, number, ""); number[len] = 0; int32_t value = (int32_t)strtol(number, &end, 10); // Radix 10