]> mj.ucw.cz Git - libucw.git/blobdiff - xml/parse.c
XML: DEL is not printable
[libucw.git] / xml / parse.c
index da50ef9dd974b8f13535b542eb82d45850b37bfe..a879effb136d04e4087f5088cf8caeee7b02309b 100644 (file)
@@ -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);