Add dummy params where needed.
authorAndrew Cagney <cagney@redhat.com>
Fri, 18 Aug 2000 22:02:43 +0000 (22:02 +0000)
committerAndrew Cagney <cagney@redhat.com>
Fri, 18 Aug 2000 22:02:43 +0000 (22:02 +0000)
gdb/ChangeLog
gdb/remote-array.c

index 7e4e6fe50a20a44caf1653cae8b565d49aa739a1..5635e515c3067e3959af4167a1eb16bb46752a30 100644 (file)
@@ -1,3 +1,9 @@
+2000-08-18  Andrew Cagney  <cagney@ops1.cygnus.com>
+
+       * remote-array.c (array_fetch_register): Pass dummy parameter to
+       array_fetch_registers.
+       (array_store_register): Ditto.
+
 2000-08-16  Eli Zaretskii <eliz@is.elta.co.il>
 
        * value.h (struct value) <lazy>: Add a comment about its use for
index 498c21820274c72ae046dad0f33df85dcf12b858..47d2833dae05974652c62833d4c7e19c99298921 100644 (file)
@@ -832,7 +832,7 @@ array_fetch_registers (int ignored)
 static void
 array_fetch_register (int ignored)
 {
-  array_fetch_registers ();
+  array_fetch_registers (0 /* ignored */);
 }
 
 /*
@@ -880,7 +880,7 @@ array_store_registers (int ignored)
 static void
 array_store_register (int ignored)
 {
-  array_store_registers ();
+  array_store_registers (0 /* ignored */);
 }
 
 /* Get ready to modify the registers array.  On machines which store
This page took 0.036351 seconds and 4 git commands to generate.