From 2a125c001cb65ba3f0fc35402df24f72281cf4b1 Mon Sep 17 00:00:00 2001 From: George Rhoten Date: Wed, 11 Oct 2006 08:31:55 +0000 Subject: [PATCH] ICU-5426 Reduce size of unused allocated memory. X-SVN-Rev: 20523 --- icu4c/source/test/cintltst/cmsccoll.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/icu4c/source/test/cintltst/cmsccoll.c b/icu4c/source/test/cintltst/cmsccoll.c index cedf34daf8..5049bc4163 100644 --- a/icu4c/source/test/cintltst/cmsccoll.c +++ b/icu4c/source/test/cintltst/cmsccoll.c @@ -2140,7 +2140,7 @@ static void TestIncrementalNormalize(void) { /*UChar baseA =0x61;*/ UChar baseA =0x41; /* UChar baseB = 0x42;*/ - UChar ccMix[] = {0x316, 0x321, 0x300}; + static const UChar ccMix[] = {0x316, 0x321, 0x300}; /*UChar ccMix[] = {0x61, 0x61, 0x61};*/ /* 0x316 is combining grave accent below, cc=220 @@ -2148,8 +2148,8 @@ static void TestIncrementalNormalize(void) { 0x300 is combining grave accent, cc=230 */ - /*int maxSLen = 2000;*/ - int maxSLen = 64000; + int maxSLen = 2000; + /*int maxSLen = 64000;*/ int sLen; int i;