From d6071491203dda1204e11dfa64b60946929a8ad0 Mon Sep 17 00:00:00 2001 From: Sebastian Gottschall Date: Mon, 8 Jan 2024 22:16:06 +0600 Subject: [PATCH] fix cstyle Signed-off-by: Sebastian Gottschall --- include/os/linux/spl/sys/debug.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/os/linux/spl/sys/debug.h b/include/os/linux/spl/sys/debug.h index bb33f695abbd..e3c6acdb9750 100644 --- a/include/os/linux/spl/sys/debug.h +++ b/include/os/linux/spl/sys/debug.h @@ -176,7 +176,7 @@ do { \ #define VERIFY0(RIGHT) do { \ const int64_t _verify0_right = (int64_t)(RIGHT); \ if (unlikely(!(0 == _verify0_right))) \ - spl_panic("unknown", __FUNCTION__, __LINE__, \ + spl_panic("unknown", __FUNCTION__, __LINE__, \ "VERIFY0(" #RIGHT ") " \ "failed (0 == %lld)\n", \ (long long)_verify0_right); \