From: glebius Date: Thu, 17 Sep 2015 20:21:55 +0000 (+0000) Subject: Remove extra tabs. X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=2e4e61dbe72a143e692ce0463d51e4be49c261a4;p=people%2Fjulieng%2Ffreebsd.git Remove extra tabs. --- diff --git a/sys/sys/systm.h b/sys/sys/systm.h index cb05a00008e7..592112a0c860 100644 --- a/sys/sys/systm.h +++ b/sys/sys/systm.h @@ -82,12 +82,12 @@ void kassert_panic(const char *fmt, ...) __printflike(1, 2); #ifdef INVARIANTS /* The option is always available */ #define KASSERT(exp,msg) do { \ if (__predict_false(!(exp))) \ - kassert_panic msg; \ + kassert_panic msg; \ } while (0) #define VNASSERT(exp, vp, msg) do { \ if (__predict_false(!(exp))) { \ vn_printf(vp, "VNASSERT failed\n"); \ - kassert_panic msg; \ + kassert_panic msg; \ } \ } while (0) #else