summaryrefslogtreecommitdiff
path: root/gdb/printcmd.c
diff options
context:
space:
mode:
authorJoel Brobecker <brobecker@adacore.com>2016-01-20 08:01:39 +0400
committerJoel Brobecker <brobecker@adacore.com>2016-01-20 08:03:44 +0400
commitbe56871ee8f65c51b9eee611532ed036a71a72e0 (patch)
tree2135c5ddc37705f20b469e17356ab84f51f93e33 /gdb/printcmd.c
parente36a770198db8e67b94ae0fb44e01793eaff361b (diff)
minor reformatting in printcmd.c::print_scalar_formatted
(GNU Coding Standard...) gdb/ChangeLog: * printcmd.c (print_scalar_formatted): move binary operator from end of line to beginning of next line. Adjust formatting accordingly.
Diffstat (limited to 'gdb/printcmd.c')
-rw-r--r--gdb/printcmd.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/printcmd.c b/gdb/printcmd.c
index 8acf441317..f5c4211e5c 100644
--- a/gdb/printcmd.c
+++ b/gdb/printcmd.c
@@ -358,9 +358,9 @@ print_scalar_formatted (const gdb_byte *valaddr, struct type *type,
/* String printing should go through val_print_scalar_formatted. */
gdb_assert (options->format != 's');
- if (len > sizeof(LONGEST) &&
- (TYPE_CODE (type) == TYPE_CODE_INT
- || TYPE_CODE (type) == TYPE_CODE_ENUM))
+ if (len > sizeof(LONGEST)
+ && (TYPE_CODE (type) == TYPE_CODE_INT
+ || TYPE_CODE (type) == TYPE_CODE_ENUM))
{
switch (options->format)
{