(check_format): DEL isn't printable.

From-SVN: r1972
This commit is contained in:
Richard Stallman 1992-08-27 05:48:11 +00:00
parent 7e6b19dcb1
commit e64bddee63
1 changed files with 1 additions and 1 deletions

View File

@ -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);