From 21891079ba7d208be9884fc82a7248d698a1673d Mon Sep 17 00:00:00 2001 From: George Rhoten Date: Tue, 27 Feb 2007 10:06:26 +0000 Subject: [PATCH] ICU-5445 Fix some compiler warnings X-SVN-Rev: 21136 --- icu4c/source/test/intltest/utxttest.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/icu4c/source/test/intltest/utxttest.cpp b/icu4c/source/test/intltest/utxttest.cpp index fdcf2177dcc..287bcb93be9 100644 --- a/icu4c/source/test/intltest/utxttest.cpp +++ b/icu4c/source/test/intltest/utxttest.cpp @@ -1364,8 +1364,8 @@ openFragmentedUnicodeString(UText *ut, UnicodeString *s, UErrorCode *status) { // 4. Check that clone contents did not change. // void UTextTest::Ticket5560() { - char *s1 = "ABCDEF"; - char *s2 = "123456"; + const char *s1 = "ABCDEF"; + const char *s2 = "123456"; UErrorCode status = U_ZERO_ERROR; UText ut1 = UTEXT_INITIALIZER;