* valprint.c (val_print_type_code_flags): Fix GNU coding standards
authorMark Kettenis <kettenis@gnu.org>
Tue, 22 Aug 2006 21:36:05 +0000 (21:36 +0000)
committerMark Kettenis <kettenis@gnu.org>
Tue, 22 Aug 2006 21:36:05 +0000 (21:36 +0000)
violation.

gdb/ChangeLog
gdb/valprint.c

index e2b012194dc91fdcab43e301e04c46bd42dbf379..449ae6439b3e2417cd65f23a5bf26979b57c9b36 100644 (file)
@@ -1,5 +1,8 @@
 2006-08-22  Mark Kettenis  <kettenis@gnu.org>
 
+       * valprint.c (val_print_type_code_flags): Fix GNU coding standards
+       violation.
+
        * alpha-tdep.c (alpha_register_to_value, alpha_value_to_register)
        (alpha_push_dummy_call, alpha_extract_return_value)
        (alpha_breakpoint_from_pc, alpha_read_insn)
index 4f834f2cf183dda1f4e890bc74066a9529d2c001..209414d67559af58fd539e202494dfdf15210a34 100644 (file)
@@ -347,8 +347,8 @@ val_print_type_code_flags (struct type *type, const gdb_byte *valaddr,
   fputs_filtered ("[ ", stream);
   for (bitpos = 0; bitpos < nfields; bitpos++)
     {
-      if (TYPE_FIELD_BITPOS (type, bitpos) != -1 &&
-         (val & ((ULONGEST)1 << bitpos)))
+      if (TYPE_FIELD_BITPOS (type, bitpos) != -1
+         && (val & ((ULONGEST)1 << bitpos)))
        {
          if (TYPE_FIELD_NAME (type, bitpos))
            fprintf_filtered (stream, "%s ", TYPE_FIELD_NAME (type, bitpos));
This page took 0.028218 seconds and 4 git commands to generate.