]> xenbits.xensource.com Git - people/julieng/freebsd.git/commitdiff
Remove extra tabs.
authorglebius <glebius@FreeBSD.org>
Thu, 17 Sep 2015 20:21:55 +0000 (20:21 +0000)
committerglebius <glebius@FreeBSD.org>
Thu, 17 Sep 2015 20:21:55 +0000 (20:21 +0000)
sys/sys/systm.h

index cb05a00008e7e2691e9a6f09a4aba3eba61ffe2d..592112a0c860c435bdc5714968d9b8353221ce81 100644 (file)
@@ -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