Author: jmallett Date: Sat Mar 3 10:22:49 2012 New Revision: 232452 URL: http://svn.freebsd.org/changeset/base/232452
Log: Unbreak n64 build without COMPAT_FREEBSD32 by fixing mismatched preprocessor conditionals. Modified: head/sys/mips/mips/trap.c Modified: head/sys/mips/mips/trap.c ============================================================================== --- head/sys/mips/mips/trap.c Sat Mar 3 10:11:18 2012 (r232451) +++ head/sys/mips/mips/trap.c Sat Mar 3 10:22:49 2012 (r232452) @@ -351,7 +351,7 @@ cpu_fetch_syscall_args(struct thread *td sa->args[6] = locr0->t6; sa->args[7] = locr0->t7; nsaved += 4; -#if defined (__mips_n32) || defined(__mips_n64) +#ifdef COMPAT_FREEBSD32 } #endif #endif _______________________________________________ svn-src-head@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-head To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"