Commit e64bddee by Richard Stallman

(check_format): DEL isn't printable.

From-SVN: r1972
parent 7e6b19dc
......@@ -1625,7 +1625,7 @@ check_format (info, params)
}
if (fci->format_chars == 0)
{
if (format_char >= 040 && format_char <= 0177)
if (format_char >= 040 && format_char < 0177)
sprintf (message,
"unknown conversion type character `%c' in format",
format_char);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment