From: Martin Mares Date: Thu, 12 Feb 2015 16:58:06 +0000 (+0100) Subject: XML: DEL is not printable X-Git-Tag: v6.3~5^2~4 X-Git-Url: http://mj.ucw.cz/gitweb/?a=commitdiff_plain;h=302c830bdbd07ddbfffe4fa3bf504914d02e02fc;p=libucw.git XML: DEL is not printable --- diff --git a/xml/parse.c b/xml/parse.c index da50ef9d..a879effb 100644 --- a/xml/parse.c +++ b/xml/parse.c @@ -26,7 +26,7 @@ void NONRET xml_fatal_expected(struct xml_context *ctx, uint c) { - if (c >= 32 && c < 128) + if (c >= 32 && c < 127) xml_fatal(ctx, "Expected '%c'", c); else xml_fatal(ctx, "Expected U+%04x", c);