diff options
author | Andrew Cagney <cagney@redhat.com> | 2000-08-18 22:02:43 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2000-08-18 22:02:43 +0000 |
commit | 3f0845370f8c14bfd7c196a2d9c2451c2789e355 (patch) | |
tree | 391f1350e3a29233f27a1b879d176e9b1af3d009 /gdb/remote-array.c | |
parent | 66102fe268a3511a519734b84f53df14263c799e (diff) | |
download | binutils-3f0845370f8c14bfd7c196a2d9c2451c2789e355.zip binutils-3f0845370f8c14bfd7c196a2d9c2451c2789e355.tar.gz binutils-3f0845370f8c14bfd7c196a2d9c2451c2789e355.tar.bz2 |
Add dummy params where needed.
Diffstat (limited to 'gdb/remote-array.c')
-rw-r--r-- | gdb/remote-array.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/remote-array.c b/gdb/remote-array.c index 498c218..47d2833 100644 --- a/gdb/remote-array.c +++ b/gdb/remote-array.c @@ -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 |