From d8ce91275e421dfe57aa4e79bb9a58824c155e96 Mon Sep 17 00:00:00 2001 From: Joel Brobecker Date: Sat, 8 Sep 2018 16:48:04 -0500 Subject: 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. --- gdb/ada-lang.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'gdb/ada-lang.c') diff --git a/gdb/ada-lang.c b/gdb/ada-lang.c index 16c7c51..b370b3c 100644 --- a/gdb/ada-lang.c +++ b/gdb/ada-lang.c @@ -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; } -- cgit v1.1