aboutsummaryrefslogtreecommitdiff
path: root/gdb/i386obsd-nat.c
diff options
context:
space:
mode:
authorMark Kettenis <kettenis@gnu.org>2014-03-01 13:06:49 +0100
committerMark Kettenis <kettenis@gnu.org>2014-03-01 13:10:32 +0100
commitb72a79813d69202b6297d872344a8a3702fae85d (patch)
tree6ebfd9f2542cfe7660ff842c192c661f1a7b24a7 /gdb/i386obsd-nat.c
parent512c56d6628733075b59bdfbe42c94ab72741ba4 (diff)
downloadgdb-b72a79813d69202b6297d872344a8a3702fae85d.zip
gdb-b72a79813d69202b6297d872344a8a3702fae85d.tar.gz
gdb-b72a79813d69202b6297d872344a8a3702fae85d.tar.bz2
Eliminate pointer signedness warning.
gdb/ChangeLog: * i386obsd-nat.c (i386obsd_supply_pcb): Cast 'sf' to 'gdb_byte *'.
Diffstat (limited to 'gdb/i386obsd-nat.c')
-rw-r--r--gdb/i386obsd-nat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/i386obsd-nat.c b/gdb/i386obsd-nat.c
index f4d07fe..a0b0808 100644
--- a/gdb/i386obsd-nat.c
+++ b/gdb/i386obsd-nat.c
@@ -64,7 +64,7 @@ i386obsd_supply_pcb (struct regcache *regcache, struct pcb *pcb)
if ((pcb->pcb_flags & PCB_SAVECTX) == 0)
{
/* Yes, we have a frame that matches cpu_switch(). */
- read_memory (pcb->pcb_esp, (char *) &sf, sizeof sf);
+ read_memory (pcb->pcb_esp, (gdb_byte *) &sf, sizeof sf);
pcb->pcb_esp += sizeof (struct switchframe);
regcache_raw_supply (regcache, I386_EDI_REGNUM, &sf.sf_edi);
regcache_raw_supply (regcache, I386_ESI_REGNUM, &sf.sf_esi);