From: Doug Evans Date: Fri, 8 Feb 2013 22:52:20 +0000 (+0000) Subject: * common/format.c (parse_format_string): Fix whitespace. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=4ff3ce77394e72b446a08032bc67e2a892eadc5d;p=binutils-gdb.git * common/format.c (parse_format_string): Fix whitespace. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index b4f88d8fd53..6a0c3e4f06d 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2013-02-08 Doug Evans + + * common/format.c (parse_format_string): Fix whitespace. + 2013-02-08 Matthew Gretton-Dann * stack.c (return_command): Work around uninitialized variable diff --git a/gdb/common/format.c b/gdb/common/format.c index a513853837c..161ff55bc64 100644 --- a/gdb/common/format.c +++ b/gdb/common/format.c @@ -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"));