diff options
author | davidxu <davidxu@FreeBSD.org> | 2005-10-15 02:09:43 +0000 |
---|---|---|
committer | davidxu <davidxu@FreeBSD.org> | 2005-10-15 02:09:43 +0000 |
commit | 038296cec9ff2272c85065215b90073d5085819a (patch) | |
tree | 8d3cce0fad5aba949052f09e8c60825aa984d723 /sys/sparc64 | |
parent | d1d407a24a7ce98d044bfe79730f03e5bb39a673 (diff) | |
download | FreeBSD-src-038296cec9ff2272c85065215b90073d5085819a.zip FreeBSD-src-038296cec9ff2272c85065215b90073d5085819a.tar.gz |
Fix compiling.
Diffstat (limited to 'sys/sparc64')
-rw-r--r-- | sys/sparc64/sparc64/trap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/sparc64/sparc64/trap.c b/sys/sparc64/sparc64/trap.c index 1a440a6..fb67479 100644 --- a/sys/sparc64/sparc64/trap.c +++ b/sys/sparc64/sparc64/trap.c @@ -289,7 +289,7 @@ trap(struct trapframe *tf) ksi.ksi_signo = sig; ksi.ksi_code = (int)tf->tf_type; /* XXX not POSIX */ /* ksi.ksi_addr = ? */ - ksi.ksi_trap = (int)tf->tf_type; + ksi.ksi_trapno = (int)tf->tf_type; trapsignal(td, &ksi); } |