]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
minor reformatting in ada-lang.c::ada_to_fixed_value
authorJoel Brobecker <brobecker@adacore.com>
Sat, 8 Sep 2018 21:48:04 +0000 (16:48 -0500)
committerJoel Brobecker <brobecker@adacore.com>
Sat, 8 Sep 2018 21:48:04 +0000 (17:48 -0400)
The arguments in the call to ada_to_fixed_value_create where
improperly aligned. But I also noticed that all the arguments
do fit on a single-line (up to 79 characters). So this patch
just fixes the code by putting everything on that same line.

gdb/ChangeLog:

        * ada-lang.c (ada_to_fixed_value): Minor reformatting in
        call to ada_to_fixed_value_create.

gdb/ChangeLog
gdb/ada-lang.c

index 41b1ad4ceda2a88d7f324caa8011a16f50cc0ea2..7869bc192a29f55c521c80fb804084ce9bd06506 100644 (file)
@@ -1,3 +1,8 @@
+2018-09-08  Joel Brobecker  <brobecker@adacore.com>
+
+       * ada-lang.c (ada_to_fixed_value): Minor reformatting in
+       call to ada_to_fixed_value_create.
+
 2018-09-08  Jerome Guitton  <guitton@adacore.com>
 
        * ada-lang.c (ada_decode): strip dot prefix in symbol name.
index 16c7c51ffa0e33f061866d849132a4e62e8289ff..b370b3cc4f0cbde14b5257fc10c9607e7cf03d16 100644 (file)
@@ -9312,9 +9312,7 @@ struct value *
 ada_to_fixed_value (struct value *val)
 {
   val = unwrap_value (val);
-  val = ada_to_fixed_value_create (value_type (val),
-                                     value_address (val),
-                                     val);
+  val = ada_to_fixed_value_create (value_type (val), value_address (val), val);
   return val;
 }
 \f