mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-08 06:53:45 +00:00
ICU-535 fixed some compiler warnings
X-SVN-Rev: 2214
This commit is contained in:
parent
8f012e9004
commit
c05ae178a7
1 changed files with 2 additions and 2 deletions
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue