From: Mark Kettenis Date: Sun, 6 Jan 2002 22:09:08 +0000 (+0000) Subject: * valops.c (value_arg_coerce): Fix formatting. X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=73fc015fdfc1e9cca339fa77f6a989dbc364c674;p=pf3gnuchains%2Fpf3gnuchains3x.git * valops.c (value_arg_coerce): Fix formatting. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 159f74c027..96fb557360 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2002-01-06 Mark Kettenis + + * valops.c (value_arg_coerce): Fix formatting. + 2002-01-06 Andrew Cagney * hp-psymtab-read.c: Include "gdb_string.h" instead of . diff --git a/gdb/valops.c b/gdb/valops.c index 2ed99235a9..cb302226bb 100644 --- a/gdb/valops.c +++ b/gdb/valops.c @@ -1142,11 +1142,12 @@ standard_coerce_float_to_double (struct type *formal, struct type *actual) IS_PROTOTYPED is non-zero if the function declaration is prototyped. */ static struct value * -value_arg_coerce (struct value *arg, struct type *param_type, int is_prototyped) +value_arg_coerce (struct value *arg, struct type *param_type, + int is_prototyped) { register struct type *arg_type = check_typedef (VALUE_TYPE (arg)); register struct type *type - = param_type ? check_typedef (param_type) : arg_type; + = param_type ? check_typedef (param_type) : arg_type; switch (TYPE_CODE (type)) {