* delta68-nat.c: Fix typos (add missing ");" and stuct -> struct).
This commit is contained in:
parent
d0454ea862
commit
66e8e483de
2 changed files with 6 additions and 2 deletions
|
@ -1,3 +1,7 @@
|
|||
Thu Nov 11 13:18:47 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
|
||||
|
||||
* delta68-nat.c: Fix typos (add missing ");" and stuct -> struct).
|
||||
|
||||
Wed Nov 10 09:31:10 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
|
||||
|
||||
* dbxread.c (process_one_symbol, N_RBRAC): Don't clear
|
||||
|
|
|
@ -43,7 +43,7 @@ register_addr (regno, blockend)
|
|||
if (regno >= 0 && regno < sizeof(sysv68reg) / sizeof(sysv68reg[0]))
|
||||
return blockend + sysv68reg[regno] * 4;
|
||||
else if (regno < FPC_REGNUM)
|
||||
return offsetof (struct user, u_fpu.regs.reg[regno - FP0_REGNUM][0]
|
||||
return offsetof (struct user, u_fpu.regs.reg[regno - FP0_REGNUM][0]);
|
||||
else if (regno == FPC_REGNUM)
|
||||
return offsetof (struct user, u_fpu.regs.control);
|
||||
else if (regno == FPS_REGNUM)
|
||||
|
@ -65,7 +65,7 @@ CORE_ADDR kernel_u_addr;
|
|||
void
|
||||
_initialize_delta68_nat ()
|
||||
{
|
||||
stuct nlist nl[2];
|
||||
struct nlist nl[2];
|
||||
|
||||
nl[0].n_name = "u";
|
||||
nl[1].n_name = NULL;
|
||||
|
|
Loading…
Reference in a new issue