ICU-307 Changed the error message format as specified by Alan

X-SVN-Rev: 2064
This commit is contained in:
George Rhoten 2000-07-28 15:17:24 +00:00
parent 2fd9124028
commit 78d44a676d

View File

@ -1047,16 +1047,19 @@ void TestAlias() {
const char *mapBack;
if (alias == NULL) {
log_err("FAIL: Converter \"%s\" (i=%d) has no alias\n",
name, i);
log_err("FAIL: Converter \"%s\" -> "
"alias[%d]=NULL\n",
name, j);
continue;
}
mapBack = ucnv_getAlias(alias, 0, &status);
if (mapBack == NULL) {
log_err("FAIL: Converter \"%s\" (i=%d) has no mapBack\n",
name, i);
log_err("FAIL: Converter \"%s\" -> "
"alias[%d]=\"%s\" -> "
"alias[0]=NULL, exp. \"%s\"\n",
name, j, alias, alias0);
continue;
}