diff options
author | jhb <jhb@FreeBSD.org> | 2001-01-19 11:43:13 +0000 |
---|---|---|
committer | jhb <jhb@FreeBSD.org> | 2001-01-19 11:43:13 +0000 |
commit | 655836bbffb4b48ebcef0a8f7a607f2a76302be6 (patch) | |
tree | 7810608cb9aef2f9cc3e0a6cba11802ab511df85 /sys/i386 | |
parent | 7544f1ff1f68650e9bd48e15ca75584696acb700 (diff) | |
download | FreeBSD-src-655836bbffb4b48ebcef0a8f7a607f2a76302be6.zip FreeBSD-src-655836bbffb4b48ebcef0a8f7a607f2a76302be6.tar.gz |
Add in a space that got lost in the previous commit in some debugging code
so that '&' becomes a binary operator and not a unary operator.
Diffstat (limited to 'sys/i386')
-rw-r--r-- | sys/i386/isa/npx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/i386/isa/npx.c b/sys/i386/isa/npx.c index b79d511..52d45ed 100644 --- a/sys/i386/isa/npx.c +++ b/sys/i386/isa/npx.c @@ -513,7 +513,7 @@ npxexit(p) u_int masked_exceptions; masked_exceptions = PCPU_GET(curpcb)->pcb_savefpu.sv_env.en_cw - &PCPU_GET(curpcb)->pcb_savefpu.sv_env.en_sw & 0x7f; + & PCPU_GET(curpcb)->pcb_savefpu.sv_env.en_sw & 0x7f; /* * Log exceptions that would have trapped with the old * control word (overflow, divide by 0, and invalid operand). |