summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Kettenis <kettenis@cvs.openbsd.org>2011-11-26 19:14:18 +0000
committerMark Kettenis <kettenis@cvs.openbsd.org>2011-11-26 19:14:18 +0000
commitac64bde8bae57cee5646d0180c5064340b18bebb (patch)
tree69fd1213d3bdd72a6485d8aa01653234169de2a2
parentafb14644412887183785cefd915d796ee51285fb (diff)
Make this compile again by removing a spurious opening brace.
-rw-r--r--sys/arch/hppa64/hppa64/trap.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/hppa64/hppa64/trap.c b/sys/arch/hppa64/hppa64/trap.c
index df3a28c1e6b..d51de198990 100644
--- a/sys/arch/hppa64/hppa64/trap.c
+++ b/sys/arch/hppa64/hppa64/trap.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: trap.c,v 1.28 2011/11/16 20:56:01 deraadt Exp $ */
+/* $OpenBSD: trap.c,v 1.29 2011/11/26 19:14:17 kettenis Exp $ */
/*
* Copyright (c) 2005 Michael Shalayeff
@@ -139,7 +139,7 @@ ast(struct proc *p)
if (p->p_flag & P_OWEUPC) {
ADDUPROF(p);
}
- if (want_resched) {
+ if (want_resched)
preempt(NULL);
}
}