ICU-159 Intitialization Fix for HP/UX10.2

X-SVN-Rev: 571
This commit is contained in:
Madhu K 2000-01-13 21:33:13 +00:00
parent 423580d732
commit b69eb9e8e9

View File

@ -311,7 +311,7 @@ UnicodeString& CollationThaiTest::parseChars(UnicodeString& result,
}
result += c;
} else {
char buf[2] = { chars[i], 0 };
char buf[] = { chars[i], 0 };
result += buf;
++i;
}