X-Git-Url: http://mj.ucw.cz/gitweb/?a=blobdiff_plain;f=xml%2Fparse.c;h=a879effb136d04e4087f5088cf8caeee7b02309b;hb=302c830bdbd07ddbfffe4fa3bf504914d02e02fc;hp=da50ef9dd974b8f13535b542eb82d45850b37bfe;hpb=ae7dfec55384883a72867d4877b5283a3c1c8aa1;p=libucw.git 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);