aboutsummaryrefslogtreecommitdiff
path: root/gdb/valops.c
diff options
context:
space:
mode:
authorMark Kettenis <kettenis@gnu.org>2002-01-06 22:09:08 +0000
committerMark Kettenis <kettenis@gnu.org>2002-01-06 22:09:08 +0000
commit290b2c7ad868d2b56f8b268303526304f4814ff5 (patch)
treea347f1893c62bbe6f37421563c67de23310dace3 /gdb/valops.c
parentaef21287e3dc2fa0b8ffbe08f0a969b392559a6d (diff)
downloadfsf-binutils-gdb-290b2c7ad868d2b56f8b268303526304f4814ff5.zip
fsf-binutils-gdb-290b2c7ad868d2b56f8b268303526304f4814ff5.tar.gz
fsf-binutils-gdb-290b2c7ad868d2b56f8b268303526304f4814ff5.tar.bz2
* valops.c (value_arg_coerce): Fix formatting.
Diffstat (limited to 'gdb/valops.c')
-rw-r--r--gdb/valops.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/gdb/valops.c b/gdb/valops.c
index 2ed9923..cb30222 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))
{