Remove extra tabs.

This commit is contained in:
Gleb Smirnoff 2015-09-17 20:21:55 +00:00
parent 5dc89bd2a0
commit 37bde76922

View 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