diff options
author | Pedro Alves <palves@redhat.com> | 2009-03-22 23:57:10 +0000 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2009-03-22 23:57:10 +0000 |
commit | 1b3f60162b504e5231252b748e95913671c431a1 (patch) | |
tree | 599f2d4d4cb8c9951ff502f4232fa6d33fbb9c53 /gdb/gdbserver/regcache.c | |
parent | * inferiors.c (find_inferior): Make it safe for the callback (diff) | |
download | binutils-gdb-1b3f60162b504e5231252b748e95913671c431a1.tar.gz binutils-gdb-1b3f60162b504e5231252b748e95913671c431a1.tar.bz2 binutils-gdb-1b3f60162b504e5231252b748e95913671c431a1.zip |
* i387-fp.c, linux-arm-low.c, linux-cris-low.c,
linux-crisv32-low.c, linux-i386-low.c, linux-low.c,
linux-mips-low.c, linux-s390-low.c, linux-sparc-low.c,
linux-x86-64-low.c, linux-xtensa-low.c, proc-service.c,
regcache.c, remote-utils.c, server.c, spu-low.c, target.h,
thread-db.c, win32-low.c, xtensa-xtregs.c, gdbreplay.c,
Makefile.in, configure.ac: Fix whitespace throughout.
* configure: Regenerate.
Diffstat (limited to 'gdb/gdbserver/regcache.c')
-rw-r--r-- | gdb/gdbserver/regcache.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gdb/gdbserver/regcache.c b/gdb/gdbserver/regcache.c index a050a4b843e..9b9330740cb 100644 --- a/gdb/gdbserver/regcache.c +++ b/gdb/gdbserver/regcache.c @@ -132,7 +132,7 @@ void set_register_cache (struct reg *regs, int n) { int offset, i; - + reg_defs = regs; num_registers = n; @@ -169,7 +169,8 @@ registers_from_string (char *buf) if (len != register_bytes * 2) { - warning ("Wrong sized register packet (expected %d bytes, got %d)", 2*register_bytes, len); + warning ("Wrong sized register packet (expected %d bytes, got %d)", + 2*register_bytes, len); if (len > register_bytes * 2) len = register_bytes * 2; } |