diff options
-rw-r--r-- | src/html.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/html.cc b/src/html.cc index b4ed35b9..036f3e52 100644 --- a/src/html.cc +++ b/src/html.cc @@ -932,7 +932,7 @@ static int Html_parse_entity(DilloHtml *html, const char *token, if (!isocode || errno || isocode > 0xffff) { /* this catches null bytes, errors and codes >= 0xFFFF */ - BUG_MSG("numeric character reference out of range\n"); + BUG_MSG("numeric character reference \"%s\" out of range\n", tok); isocode = -2; } |