* amd64obsd-nat.c (amd64obsd_supply_pcb): Use 'gdb_byte *' instead
of 'char *' in cast.
This commit is contained in:
parent
734ca0a1f4
commit
d7a30af77f
@ -1,3 +1,8 @@
|
||||
2006-01-09 Mark Kettenis <kettenis@gnu.org>
|
||||
|
||||
* amd64obsd-nat.c (amd64obsd_supply_pcb): Use 'gdb_byte *' instead
|
||||
of 'char *' in cast.
|
||||
|
||||
2006-01-07 Paul N. Hilfinger <hilfinger@adacore.com>
|
||||
|
||||
* ada-exp.y, ada-lex.l, ada-typeprint.c: I18n markup.
|
||||
|
@ -103,7 +103,7 @@ amd64obsd_supply_pcb (struct regcache *regcache, struct pcb *pcb)
|
||||
return 0;
|
||||
|
||||
/* Read the stack frame, and check its validity. */
|
||||
read_memory (pcb->pcb_rsp, (char *) &sf, sizeof sf);
|
||||
read_memory (pcb->pcb_rsp, (gdb_byte *) &sf, sizeof sf);
|
||||
if (sf.sf_rbp == pcb->pcb_rbp)
|
||||
{
|
||||
/* Yes, we have a frame that matches cpu_switch(). */
|
||||
|
Loading…
Reference in New Issue
Block a user