From 87775fcd35974c4bfbc9dfa554badace2a31a4de Mon Sep 17 00:00:00 2001 From: Juli Mallett Date: Sat, 3 Mar 2012 10:22:49 +0000 Subject: [PATCH] Unbreak n64 build without COMPAT_FREEBSD32 by fixing mismatched preprocessor conditionals. --- sys/mips/mips/trap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/mips/mips/trap.c b/sys/mips/mips/trap.c index b162a18a398a..a54bd3e29db7 100644 --- a/sys/mips/mips/trap.c +++ b/sys/mips/mips/trap.c @@ -351,7 +351,7 @@ cpu_fetch_syscall_args(struct thread *td, struct syscall_args *sa) sa->args[6] = locr0->t6; sa->args[7] = locr0->t7; nsaved += 4; -#if defined (__mips_n32) || defined(__mips_n64) +#ifdef COMPAT_FREEBSD32 } #endif #endif