ICU-6487 minor improvement to genrb error message (for tracing)

X-SVN-Rev: 24645
This commit is contained in:
Steven R. Loomis 2008-09-25 18:32:45 +00:00
parent 14916d1c39
commit f6277f0a4e

View File

@ -979,7 +979,7 @@ realParseTable(struct SResource *table, char *tag, uint32_t startline, UErrorCod
if (U_FAILURE(*status))
{
error(line, "parse error. Stopped parsing with %s", u_errorName(*status));
error(line, "parse error. Stopped parsing tokens with %s", u_errorName(*status));
return NULL;
}
@ -987,7 +987,7 @@ realParseTable(struct SResource *table, char *tag, uint32_t startline, UErrorCod
if (member == NULL || U_FAILURE(*status))
{
error(line, "parse error. Stopped parsing with %s", u_errorName(*status));
error(line, "parse error. Stopped parsing resource with %s", u_errorName(*status));
return NULL;
}
@ -995,7 +995,7 @@ realParseTable(struct SResource *table, char *tag, uint32_t startline, UErrorCod
if (U_FAILURE(*status))
{
error(line, "parse error. Stopped parsing with %s", u_errorName(*status));
error(line, "parse error. Stopped parsing table with %s", u_errorName(*status));
return NULL;
}
readToken = TRUE;