diff options
author | John Gilmore <gnu@cygnus> | 1991-05-04 23:15:02 +0000 |
---|---|---|
committer | John Gilmore <gnu@cygnus> | 1991-05-04 23:15:02 +0000 |
commit | 5594d534a24ff0e48806803376209d4b27ec8351 (patch) | |
tree | 27b7836ec8a38f69e68e3c864df90f364208160a /gdb/remote.c | |
parent | b1847ba9e7da744bb3695f9611dad4119cc7991e (diff) | |
download | gdb-5594d534a24ff0e48806803376209d4b27ec8351.zip gdb-5594d534a24ff0e48806803376209d4b27ec8351.tar.gz gdb-5594d534a24ff0e48806803376209d4b27ec8351.tar.bz2 |
Saber C (lint) cleanups, and a few bug fixes. See ChangeLog.
Diffstat (limited to 'gdb/remote.c')
-rw-r--r-- | gdb/remote.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gdb/remote.c b/gdb/remote.c index 6a2dd7c..8215243 100644 --- a/gdb/remote.c +++ b/gdb/remote.c @@ -299,7 +299,7 @@ remote_wait (status) /* Currently we just read all the registers, so we don't use regno. */ /* ARGSUSED */ -int +void remote_fetch_registers (regno) int regno; { @@ -325,7 +325,6 @@ remote_fetch_registers (regno) } for (i = 0; i < NUM_REGS; i++) supply_register (i, ®s[REGISTER_BYTE(i)]); - return 0; } /* Prepare to store registers. Since we send them all, we have to |