summaryrefslogtreecommitdiffstats
path: root/sys/arch/sgi/include/mutex.h
diff options
context:
space:
mode:
authormiod <miod@openbsd.org>2007-05-14 17:32:15 +0000
committermiod <miod@openbsd.org>2007-05-14 17:32:15 +0000
commit366ddb2e69c1ac00636dfb4c5dd3cca9a9c0eb61 (patch)
treeedfa2675da4985c641e9698e0699152daee853fc /sys/arch/sgi/include/mutex.h
parentcosmetic tweak (diff)
downloadwireguard-openbsd-366ddb2e69c1ac00636dfb4c5dd3cca9a9c0eb61.tar.xz
wireguard-openbsd-366ddb2e69c1ac00636dfb4c5dd3cca9a9c0eb61.zip
Oops, IPL_NONE is not zero in HEAD.
Diffstat (limited to 'sys/arch/sgi/include/mutex.h')
-rw-r--r--sys/arch/sgi/include/mutex.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/sgi/include/mutex.h b/sys/arch/sgi/include/mutex.h
index f3b0bd61b84..858d27c6a8f 100644
--- a/sys/arch/sgi/include/mutex.h
+++ b/sys/arch/sgi/include/mutex.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: mutex.h,v 1.2 2007/05/05 12:06:20 miod Exp $ */
+/* $OpenBSD: mutex.h,v 1.3 2007/05/14 17:32:15 miod Exp $ */
/*
* Copyright (c) 2004 Artur Grabowski <art@openbsd.org>
@@ -39,7 +39,7 @@ struct mutex {
void mtx_init(struct mutex *, int);
-#define MUTEX_INITIALIZER(ipl) { 0, (ipl), 0 }
+#define MUTEX_INITIALIZER(ipl) { 0, (ipl), IPL_NONE }
#ifdef DIAGNOSTIC
#define MUTEX_ASSERT_LOCKED(mtx) do { \