Eliminate pointer signedness warning.

gdb/ChangeLog:

        * i386obsd-nat.c (i386obsd_supply_pcb): Cast 'sf' to 'gdb_byte *'.
This commit is contained in:
Mark Kettenis 2014-03-01 13:06:49 +01:00
parent 512c56d662
commit b72a79813d
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2014-03-01 Mark Kettenis <kettenis@gnu.org>
* i386obsd-nat.c (i386obsd_supply_pcb): Cast 'sf' to 'gdb_byte *'.
2014-03-01 Mark Kettenis <kettenis@gnu.org>
* mips64obsd-nat.c: Include "obsd-nath".

View File

@ -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);