ICU-6487 minor improvement to genrb error message (for tracing)
X-SVN-Rev: 24645
This commit is contained in:
parent
14916d1c39
commit
f6277f0a4e
@ -979,7 +979,7 @@ realParseTable(struct SResource *table, char *tag, uint32_t startline, UErrorCod
|
|||||||
|
|
||||||
if (U_FAILURE(*status))
|
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;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -987,7 +987,7 @@ realParseTable(struct SResource *table, char *tag, uint32_t startline, UErrorCod
|
|||||||
|
|
||||||
if (member == NULL || U_FAILURE(*status))
|
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;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -995,7 +995,7 @@ realParseTable(struct SResource *table, char *tag, uint32_t startline, UErrorCod
|
|||||||
|
|
||||||
if (U_FAILURE(*status))
|
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;
|
return NULL;
|
||||||
}
|
}
|
||||||
readToken = TRUE;
|
readToken = TRUE;
|
||||||
|
Loading…
Reference in New Issue
Block a user