summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormiod <miod@openbsd.org>2003-08-01 07:48:24 +0000
committermiod <miod@openbsd.org>2003-08-01 07:48:24 +0000
commit239a3b577bdb1bceeafda399e7824899a455cd26 (patch)
tree947cb2af99a68bc0b11016f2ec92aa7a8a5d920a
parentCompensate for the assym.h lossage, which defines NBPG for now (this will be (diff)
downloadwireguard-openbsd-239a3b577bdb1bceeafda399e7824899a455cd26.tar.xz
wireguard-openbsd-239a3b577bdb1bceeafda399e7824899a455cd26.zip
No semicolon at the end of macros supposed to be atomic statements.
-rw-r--r--sys/arch/mvme88k/mvme88k/pmap.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/mvme88k/mvme88k/pmap.c b/sys/arch/mvme88k/mvme88k/pmap.c
index 1f5da45967d..c5c31aa265d 100644
--- a/sys/arch/mvme88k/mvme88k/pmap.c
+++ b/sys/arch/mvme88k/mvme88k/pmap.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: pmap.c,v 1.68 2003/01/24 09:57:44 miod Exp $ */
+/* $OpenBSD: pmap.c,v 1.69 2003/08/01 07:48:24 miod Exp $ */
/*
* Copyright (c) 2001, 2002, 2003 Miodrag Vallat
* Copyright (c) 1998-2001 Steve Murphree, Jr.
@@ -188,8 +188,8 @@ pg_to_pvh(struct vm_page *pg)
* We raise the interrupt level to splvm, to block interprocessor
* interrupts during pmap operations.
*/
-#define SPLVM(spl) spl = splvm();
-#define SPLX(spl) splx(spl);
+#define SPLVM(spl) spl = splvm()
+#define SPLX(spl) splx(spl)
#define PMAP_LOCK(pmap,spl) \
do { \