mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-21 12:40:02 +00:00
ICU-3839 Fix an error message so that errors show up.
X-SVN-Rev: 16498
This commit is contained in:
parent
287e1a3959
commit
0a954254c2
1 changed files with 1 additions and 1 deletions
|
@ -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++;
|
||||
|
|
Loading…
Add table
Reference in a new issue