diff options
| author | Peter Wemm <peter@FreeBSD.org> | 1997-05-07 19:58:13 +0000 |
|---|---|---|
| committer | Peter Wemm <peter@FreeBSD.org> | 1997-05-07 19:58:13 +0000 |
| commit | 06884fd04e5ae3f7d93b817ad78183dc7abf61bf (patch) | |
| tree | 9527f8951fc50eb699417a5a1382c33a1d00c74a | |
| parent | 6f486a5552ec9709e113c4a1e40bf6f40d83031c (diff) | |
Notes
| -rw-r--r-- | sys/amd64/amd64/fpu.c | 4 | ||||
| -rw-r--r-- | sys/amd64/isa/npx.c | 4 | ||||
| -rw-r--r-- | sys/i386/isa/npx.c | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/sys/amd64/amd64/fpu.c b/sys/amd64/amd64/fpu.c index 402b1cebb76f..b4334995df79 100644 --- a/sys/amd64/amd64/fpu.c +++ b/sys/amd64/amd64/fpu.c @@ -32,7 +32,7 @@ * SUCH DAMAGE. * * from: @(#)npx.c 7.2 (Berkeley) 5/12/91 - * $Id: npx.c,v 1.41 1997/04/22 06:55:38 jdp Exp $ + * $Id: npx.c,v 1.42 1997/04/26 11:46:03 peter Exp $ */ #include "npx.h" @@ -543,7 +543,7 @@ npxintr(unit) * in doreti, and the frame for that could easily be set up * just before it is used). */ - curproc->p_md.md_regs = &frame->if_es; + curproc->p_md.md_regs = (struct trapframe *)&frame->if_es; #ifdef notyet /* * Encode the appropriate code for detailed information on diff --git a/sys/amd64/isa/npx.c b/sys/amd64/isa/npx.c index 402b1cebb76f..b4334995df79 100644 --- a/sys/amd64/isa/npx.c +++ b/sys/amd64/isa/npx.c @@ -32,7 +32,7 @@ * SUCH DAMAGE. * * from: @(#)npx.c 7.2 (Berkeley) 5/12/91 - * $Id: npx.c,v 1.41 1997/04/22 06:55:38 jdp Exp $ + * $Id: npx.c,v 1.42 1997/04/26 11:46:03 peter Exp $ */ #include "npx.h" @@ -543,7 +543,7 @@ npxintr(unit) * in doreti, and the frame for that could easily be set up * just before it is used). */ - curproc->p_md.md_regs = &frame->if_es; + curproc->p_md.md_regs = (struct trapframe *)&frame->if_es; #ifdef notyet /* * Encode the appropriate code for detailed information on diff --git a/sys/i386/isa/npx.c b/sys/i386/isa/npx.c index 402b1cebb76f..b4334995df79 100644 --- a/sys/i386/isa/npx.c +++ b/sys/i386/isa/npx.c @@ -32,7 +32,7 @@ * SUCH DAMAGE. * * from: @(#)npx.c 7.2 (Berkeley) 5/12/91 - * $Id: npx.c,v 1.41 1997/04/22 06:55:38 jdp Exp $ + * $Id: npx.c,v 1.42 1997/04/26 11:46:03 peter Exp $ */ #include "npx.h" @@ -543,7 +543,7 @@ npxintr(unit) * in doreti, and the frame for that could easily be set up * just before it is used). */ - curproc->p_md.md_regs = &frame->if_es; + curproc->p_md.md_regs = (struct trapframe *)&frame->if_es; #ifdef notyet /* * Encode the appropriate code for detailed information on |
