Commit 80d390a2 by Richard Kenner

Install latest version of last patch.

From-SVN: r11293
parent 11e87727
...@@ -1081,12 +1081,14 @@ check_format_info (info, params) ...@@ -1081,12 +1081,14 @@ check_format_info (info, params)
} }
} }
} }
if (*format_chars == 'h' || *format_chars == 'l' || *format_chars == 'q' || if (*format_chars == 'h' || *format_chars == 'l')
*format_chars == 'L') length_char = *format_chars++;
else if (*format_chars == 'q' || *format_chars == 'L')
{ {
length_char = *format_chars++; length_char = *format_chars++;
if (pedantic) if (pedantic)
pedwarn ("ANSI C does not support the `q' length modifier"); pedwarn ("ANSI C does not support the `%c' length modifier",
length_char);
} }
else else
length_char = 0; length_char = 0;
......
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