mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-06 05:55:35 +00:00
ICU-5445 Fix some compiler warnings.
X-SVN-Rev: 21324
This commit is contained in:
parent
444114a864
commit
6b6e3c19cb
1 changed files with 2 additions and 2 deletions
|
@ -62,7 +62,7 @@ addIDNATest(TestNode** root)
|
|||
addTest(root, &TestIDNToASCII, "idna/TestIDNToASCII");
|
||||
addTest(root, &TestCompare, "idna/TestCompare");
|
||||
addTest(root, &TestUnicode32Norm,"idna/TestUnicode32Norm");
|
||||
addTest(root, &TestJB4490, "idna/TestJB4490");
|
||||
addTest(root, &TestJB4490, "idna/TestJB4490");
|
||||
addTest(root, &TestJB4475, "idna/TestJB4475");
|
||||
addTest(root, &TestLength, "idna/TestLength");
|
||||
addTest(root, &TestJB5273, "idna/TestJB5273");
|
||||
|
@ -845,7 +845,7 @@ static void TestLength(){
|
|||
}
|
||||
}
|
||||
static void TestJB5273(){
|
||||
char* INVALID_DOMAIN_NAME = "xn--m\u00FCller.de";
|
||||
static const char INVALID_DOMAIN_NAME[] = "xn--m\\u00FCller.de";
|
||||
UChar invalid_idn[25] = {'\0'};
|
||||
int32_t len = u_unescape(INVALID_DOMAIN_NAME, invalid_idn, strlen(INVALID_DOMAIN_NAME));
|
||||
UChar output[50] = {'\0'};
|
||||
|
|
Loading…
Add table
Reference in a new issue