From ca04fd5f6fddec0b64298121e6f904d93dbeb97d Mon Sep 17 00:00:00 2001 From: Bruce Evans Date: Thu, 23 Mar 2000 18:46:44 +0000 Subject: [PATCH] Fixed my breakage of SPLASSERT() in rev.1.15. There was a stray semicolon after "if ()". --- sys/alpha/alpha/ipl_funcs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/alpha/alpha/ipl_funcs.c b/sys/alpha/alpha/ipl_funcs.c index fd6f86e822e2..0995d17a5b6c 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); \ }