ICU-3839 Fix an error message so that errors show up.

X-SVN-Rev: 16498
This commit is contained in:
George Rhoten 2004-10-14 23:34:35 +00:00
parent 287e1a3959
commit 0a954254c2

View file

@ -187,7 +187,7 @@ uto64(const UChar *buffer)
/* read the next digit */
result *= 16;
if (!u_isxdigit(*buffer)) {
log_err("\\u%04X is not a valid hex digit for this test", (UChar)*buffer);
log_err("\\u%04X is not a valid hex digit for this test\n", (UChar)*buffer);
}
result += *buffer - 0x0030 - (*buffer >= 0x0041 ? (*buffer >= 0x0061 ? 39 : 7) : 0);
buffer++;