Fixed my breakage of SPLASSERT() in rev.1.15. There was a stray semicolon

after "if ()".
This commit is contained in:
Bruce Evans 2000-03-23 18:46:44 +00:00
parent 9992d96f25
commit ca04fd5f6f

View File

@ -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); \
}