* common/format.c (parse_format_string): Fix whitespace.

This commit is contained in:
Doug Evans
2013-02-08 22:52:20 +00:00
parent 83ee86b106
commit 4ff3ce7739
2 changed files with 11 additions and 7 deletions

View File

@@ -245,10 +245,10 @@ parse_format_string (char **arg)
this_argclass = long_arg;
else
this_argclass = long_long_arg;
if (seen_big_l)
bad = 1;
break;
if (seen_big_l)
bad = 1;
break;
case 'c':
this_argclass = lcount == 0 ? int_arg : wide_char_arg;
@@ -286,9 +286,9 @@ parse_format_string (char **arg)
else
this_argclass = double_arg;
if (lcount || seen_h)
bad = 1;
break;
if (lcount || seen_h)
bad = 1;
break;
case '*':
error (_("`*' not supported for precision or width in printf"));