From c05ae178a71a38c9ea3dd13c86054556f0f21d4d Mon Sep 17 00:00:00 2001 From: George Rhoten Date: Fri, 11 Aug 2000 23:52:25 +0000 Subject: [PATCH] ICU-535 fixed some compiler warnings X-SVN-Rev: 2214 --- icu4c/source/test/cintltst/nucnvtst.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/icu4c/source/test/cintltst/nucnvtst.c b/icu4c/source/test/cintltst/nucnvtst.c index 8728c3c8fc2..bb92972d286 100644 --- a/icu4c/source/test/cintltst/nucnvtst.c +++ b/icu4c/source/test/cintltst/nucnvtst.c @@ -1534,7 +1534,7 @@ TestLMBCS() { pUniIn = uniString; ucnv_toUnicode (cnv16jp, &pUniIn, pUniIn + 1, - (char **)&pLMBCSOut, (const char *)(pLMBCSOut + 1), + (const char **)&pLMBCSOut, (const char *)(pLMBCSOut + 1), NULL, 1, &errorCode); if (U_FAILURE(errorCode) || pLMBCSOut != lmbcsString+1 || pUniIn != uniString+1 || uniString[0] != 0xFF6E) { @@ -1556,7 +1556,7 @@ TestLMBCS() { pUniIn = uniString; ucnv_toUnicode (cnv01us, &pUniIn, pUniIn + 1, - (char **)&pLMBCSOut, (const char *)(pLMBCSOut + 3), + (const char **)&pLMBCSOut, (const char *)(pLMBCSOut + 3), NULL, 1, &errorCode); if (U_FAILURE(errorCode) || pLMBCSOut != lmbcsString+3 || pUniIn != uniString+1 || uniString[0] != 0xFF6E) {