summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorTed Unangst <tedu@cvs.openbsd.org>2004-05-23 20:28:47 +0000
committerTed Unangst <tedu@cvs.openbsd.org>2004-05-23 20:28:47 +0000
commit5968606c1a02d4ce6cf78dd610049d02d4471aae (patch)
treea34203ec47eae6a340bc386723a98c430514b7bf /sys
parentcd05774901156316d9f4092910a5d32b7e8a64d7 (diff)
don't need backslashes in splx. spotted otto
Diffstat (limited to 'sys')
-rw-r--r--sys/arch/i386/i386/machdep.c17
1 files changed, 8 insertions, 9 deletions
diff --git a/sys/arch/i386/i386/machdep.c b/sys/arch/i386/i386/machdep.c
index da608741a17..f98f477bbf2 100644
--- a/sys/arch/i386/i386/machdep.c
+++ b/sys/arch/i386/i386/machdep.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: machdep.c,v 1.293 2004/05/23 00:06:01 tedu Exp $ */
+/* $OpenBSD: machdep.c,v 1.294 2004/05/23 20:28:46 tedu Exp $ */
/* $NetBSD: machdep.c,v 1.214 1996/11/10 03:16:17 thorpej Exp $ */
/*-
@@ -3945,13 +3945,13 @@ splraise(ncpl)
* Restore an old interrupt priority level. If any thereby unmasked
* interrupts are pending, call Xspllower() to process them.
*/
-void \
-splx(ncpl) \
- int ncpl; \
-{ \
- cpl = ncpl; \
- if (ipending & IUNMASK(ncpl)) \
- Xspllower(); \
+void
+splx(ncpl)
+ int ncpl;
+{
+ cpl = ncpl;
+ if (ipending & IUNMASK(ncpl))
+ Xspllower();
}
/*
@@ -3967,4 +3967,3 @@ spllower(ncpl)
splx(ncpl);
return (ocpl);
}
-