* valops.c (value_arg_coerce): Fix formatting.
authorMark Kettenis <kettenis@gnu.org>
Sun, 6 Jan 2002 22:09:08 +0000 (22:09 +0000)
committerMark Kettenis <kettenis@gnu.org>
Sun, 6 Jan 2002 22:09:08 +0000 (22:09 +0000)
gdb/ChangeLog
gdb/valops.c

index 159f74c0275a7f2c278a66c51337e4ad3989f925..96fb5573606566c4785b2475c17b6d4dfecb45d5 100644 (file)
@@ -1,3 +1,7 @@
+2002-01-06  Mark Kettenis  <kettenis@gnu.org>
+
+       * valops.c (value_arg_coerce): Fix formatting. 
+
 2002-01-06  Andrew Cagney  <ac131313@redhat.com>
 
        * hp-psymtab-read.c: Include "gdb_string.h" instead of <string.h>.
index 2ed99235a969c51e411e2771a0505d2b0fc1353f..cb302226bb1af194d4c7f1f7372ff373e1d55763 100644 (file)
@@ -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))
     {
This page took 0.028044 seconds and 4 git commands to generate.