minor reformatting in ada-lang.c::ada_to_fixed_value

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.
This commit is contained in:
Joel Brobecker 2018-09-08 16:48:04 -05:00
parent 0d81f350ec
commit d8ce91275e
2 changed files with 6 additions and 3 deletions

View 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.

View 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;
}