From a2114a3719471a88b40a98f069c04260da9a05d7 Mon Sep 17 00:00:00 2001 From: Alan Liu Date: Fri, 22 Oct 1999 00:46:09 +0000 Subject: [PATCH] ICU-25 Fix compiler errors from egcs X-SVN-Rev: 101 --- icu4c/source/test/intltest/dtfmapts.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/icu4c/source/test/intltest/dtfmapts.cpp b/icu4c/source/test/intltest/dtfmapts.cpp index 1317055c607..ededd57d08b 100644 --- a/icu4c/source/test/intltest/dtfmapts.cpp +++ b/icu4c/source/test/intltest/dtfmapts.cpp @@ -295,9 +295,9 @@ IntlTestDateFormatAPI::TestNameHiding() { fmt.format(numObj, str, fpos, status); // NumberFormat API fmt.format(2.71828, str); - fmt.format(1234567L, str); + fmt.format((int32_t)1234567, str); fmt.format(1.41421, str, fpos); - fmt.format(9876543L, str, fpos); + fmt.format((int32_t)9876543, str, fpos); fmt.parse(str, obj, ppos); fmt.parse(str, obj, status); } @@ -312,9 +312,9 @@ IntlTestDateFormatAPI::TestNameHiding() { fmt.format(numObj, str, fpos, status); // NumberFormat API fmt.format(2.71828, str); - fmt.format(1234567L, str); + fmt.format((int32_t)1234567, str); fmt.format(1.41421, str, fpos); - fmt.format(9876543L, str, fpos); + fmt.format((int32_t)9876543, str, fpos); fmt.parse(str, obj, ppos); fmt.parse(str, obj, status); }