summaryrefslogtreecommitdiffstats
path: root/sys
diff options
context:
space:
mode:
authorbde <bde@FreeBSD.org>2000-03-23 18:46:44 +0000
committerbde <bde@FreeBSD.org>2000-03-23 18:46:44 +0000
commit47452562a1f7696145d899723b8263013744c921 (patch)
tree5011332b0b299562998da0a1788bf4b00272dcf2 /sys
parent2054c7bab47b0600e4308a6dd0d6d9f7605067ee (diff)
downloadFreeBSD-src-47452562a1f7696145d899723b8263013744c921.zip
FreeBSD-src-47452562a1f7696145d899723b8263013744c921.tar.gz
Fixed my breakage of SPLASSERT() in rev.1.15. There was a stray semicolon
after "if ()".
Diffstat (limited to 'sys')
-rw-r--r--sys/alpha/alpha/ipl_funcs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/alpha/alpha/ipl_funcs.c b/sys/alpha/alpha/ipl_funcs.c
index fd6f86e..0995d17 100644
--- a/sys/alpha/alpha/ipl_funcs.c
+++ b/sys/alpha/alpha/ipl_funcs.c
@@ -207,7 +207,7 @@ name##assert(const char *msg) \
u_int cpl; \
\
cpl = getcpl(); \
- if (cpl < ALPHA_PSL_IPL_##pri); \
+ if (cpl < ALPHA_PSL_IPL_##pri) \
splassertfail("%s: not %s, cpl == %#x", \
msg, __XSTRING(name) + 3, cpl); \
}
OpenPOWER on IntegriCloud