summaryrefslogtreecommitdiff
path: root/gdb/common
diff options
context:
space:
mode:
authorDoug Evans <dje@google.com>2013-02-08 22:52:17 +0000
committerDoug Evans <dje@google.com>2013-02-08 22:52:17 +0000
commit6d8372ae56145f11173e4513df5469b895b0854f (patch)
treecd68fc4773de31f69c2f0ca97ce6705ee6e6e4e6 /gdb/common
parent14ee1f16a7b7f0f6624404371a2904a73919400d (diff)
downloadgdb-6d8372ae56145f11173e4513df5469b895b0854f.tar.gz
* common/format.c (parse_format_string): Fix whitespace.
Diffstat (limited to 'gdb/common')
-rw-r--r--gdb/common/format.c14
1 files changed, 7 insertions, 7 deletions
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"));