Date: Tue, 6 Mar 2001 11:01:02 +0000 From: "Nick Hilliard" <nick@netability.ie> To: current@freebsd.org Subject: typo in /usr/src/sys/sys/sx.h Message-ID: <20010306110102.B30611@euripides.enigma.ie>
next in thread | raw e-mail | index | archive | help
There's a small typo in /usr/src/sys/sys/sx.h which causes kernel builds to break unless INVARIANTS is defined. Patch below against version 1.2 of the file. Nick --- /usr/src/sys/sys/sx.h.orig Tue Mar 6 10:57:31 2001 +++ /usr/src/sys/sys/sx.h Tue Mar 6 10:57:38 2001 @@ -78,7 +78,7 @@ #else /* INVARIANTS */ #define SX_ASSERT_SLOCKED(sx) -#define SX_ASSERT_XLOCKER(sx) +#define SX_ASSERT_XLOCKED(sx) #endif /* INVARIANTS */ #endif /* _KERNEL */ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20010306110102.B30611>