summaryrefslogtreecommitdiff
path: root/sys/arch/sparc/include
diff options
context:
space:
mode:
Diffstat (limited to 'sys/arch/sparc/include')
-rw-r--r--sys/arch/sparc/include/psl.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/sparc/include/psl.h b/sys/arch/sparc/include/psl.h
index 96418442bc9..1cd1b561797 100644
--- a/sys/arch/sparc/include/psl.h
+++ b/sys/arch/sparc/include/psl.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: psl.h,v 1.22 2007/05/08 07:23:18 art Exp $ */
+/* $OpenBSD: psl.h,v 1.23 2007/05/16 19:37:06 thib Exp $ */
/* $NetBSD: psl.h,v 1.12 1997/03/10 21:49:11 pk Exp $ */
/*
@@ -169,7 +169,7 @@ void splassert_fail(int, int, const char *);
extern int splassert_ctl;
void splassert_check(int, const char *);
#define splassert(__wantipl) do { \
- if (__predict_false(splassert_ctl > 0)) { \
+ if (splassert_ctl > 0) { \
splassert_check(__wantipl, __func__); \
} \
} while (0)