diff options
-rw-r--r-- | gdb/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/arm-linux-tdep.c | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 23f938b..d08634d 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2006-04-10 Daniel Jacobowitz <dan@codesourcery.com> + + * arm-linux-tdep.c (arm_linux_extract_return_value): Use gdb_byte. + 2006-04-09 David S. Miller <davem@sunset.davemloft.net> * sparc64-linux-tdep.c (sparc64_linux_init_abi): Append dwarf2 diff --git a/gdb/arm-linux-tdep.c b/gdb/arm-linux-tdep.c index b8c0d25..cefda62 100644 --- a/gdb/arm-linux-tdep.c +++ b/gdb/arm-linux-tdep.c @@ -79,8 +79,8 @@ static const char arm_linux_thumb_le_breakpoint[] = {0x01, 0xde}; hidden behind the regcache abstraction. */ static void arm_linux_extract_return_value (struct type *type, - char regbuf[], - char *valbuf) + gdb_byte regbuf[], + gdb_byte *valbuf) { /* ScottB: This needs to be looked at to handle the different floating point emulators on ARM GNU/Linux. Right now the code |