mirror of
https://github.com/libexpat/libexpat.git
synced 2025-04-05 21:24:59 +00:00
Fix bug in utf8_isNmstrt2
This commit is contained in:
parent
75405cf655
commit
2844be94b7
1 changed files with 1 additions and 1 deletions
|
@ -101,7 +101,7 @@ int utf8_isName3(const ENCODING *enc, const char *p)
|
|||
static
|
||||
int utf8_isNmstrt2(const ENCODING *enc, const char *p)
|
||||
{
|
||||
return UTF8_GET_NAMING2(namePages, (const unsigned char *)p);
|
||||
return UTF8_GET_NAMING2(nmstrtPages, (const unsigned char *)p);
|
||||
}
|
||||
|
||||
static
|
||||
|
|
Loading…
Add table
Reference in a new issue