ada-lang.c: fix line too long in cast_from_gnat_encoded_fixed_point_type
authorJoel Brobecker <brobecker@adacore.com>
Sun, 1 Nov 2020 07:38:45 +0000 (02:38 -0500)
committerJoel Brobecker <brobecker@adacore.com>
Sun, 1 Nov 2020 08:46:05 +0000 (03:46 -0500)
One of the lines got too long after a renaming done in a previous
commit. This fixes that.

gdb/ChangeLog:

        * ada-lang.c (cast_from_gnat_encoded_fixed_point_type): Split
        line too long.

gdb/ChangeLog
gdb/ada-lang.c

index 8e46763a5daddae6e602e26656ac27e2eee6aa1b..4654c208f7993ac0da760dc9760c1d94a57b3c85 100644 (file)
@@ -1,3 +1,8 @@
+2020-11-01  Joel Brobecker  <brobecker@adacore.com>
+
+       * ada-lang.c (cast_from_gnat_encoded_fixed_point_type): Split
+       line too long.
+
 2020-11-01  Joel Brobecker  <brobecker@adacore.com>
 
        * ada-lang.c (cast_from_gnat_encoded_fixed_point_type): Renames
index c0c440ddc06ba0f7ee21a8b9e3aaf958888f7317..e94dd8cadbe868e652c717c30c5e7b6b15804f9c 100644 (file)
@@ -9172,7 +9172,8 @@ unwrap_value (struct value *val)
 static struct value *
 cast_from_gnat_encoded_fixed_point_type (struct type *type, struct value *arg)
 {
-  struct value *scale = gnat_encoded_fixed_point_scaling_factor (value_type (arg));
+  struct value *scale
+    = gnat_encoded_fixed_point_scaling_factor (value_type (arg));
   arg = value_cast (value_type (scale), arg);
 
   arg = value_binop (arg, scale, BINOP_MUL);