diff options
author | Joel Brobecker <brobecker@gnat.com> | 2007-10-22 00:00:07 +0000 |
---|---|---|
committer | Joel Brobecker <brobecker@gnat.com> | 2007-10-22 00:00:07 +0000 |
commit | 261224b2fdd5e3534653eb492ee3c6eeb1c92f1e (patch) | |
tree | 4bc7518784cb079d56cff1ea9d637e2e1d22746a | |
parent | dd8de1a32eba97f35bfef429d87b1fd7bffab6bd (diff) | |
download | binutils-261224b2fdd5e3534653eb492ee3c6eeb1c92f1e.zip binutils-261224b2fdd5e3534653eb492ee3c6eeb1c92f1e.tar.gz binutils-261224b2fdd5e3534653eb492ee3c6eeb1c92f1e.tar.bz2 |
* hppa-hpux-nat.c (hppa_hpux_store_register): Add missing semi-colon.
-rw-r--r-- | gdb/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/hppa-hpux-nat.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index c7d2799..2ad5ec2 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2007-10-21 Joel Brobecker <brobecker@adacore.com> + + * hppa-hpux-nat.c (hppa_hpux_store_register): Add missing semi-colon. + 2007-10-21 Luis Machado <luisgpm@br.ibm.com> * rs6000-tdep.c (ppc_dwarf2_frame_init_reg): New function. diff --git a/gdb/hppa-hpux-nat.c b/gdb/hppa-hpux-nat.c index 31932b1..48a4afc 100644 --- a/gdb/hppa-hpux-nat.c +++ b/gdb/hppa-hpux-nat.c @@ -160,7 +160,7 @@ static void hppa_hpux_store_register (struct regcache *regcache, int regnum) { struct gdbarch *gdbarch = get_regcache_arch (regcache); - CORE_ADDR addr + CORE_ADDR addr; size_t size; PTRACE_TYPE_RET *buf; pid_t pid; |