Remove extra tabs.
This commit is contained in:
parent
5dc89bd2a0
commit
37bde76922
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user