From 438275c9a09c3f0b0b43ea17b1cceca8a83666d4 Mon Sep 17 00:00:00 2001 From: loli10K Date: Fri, 24 May 2019 23:06:53 +0200 Subject: [PATCH] VERIFY3P() message is missing a space character This commit just reintroduces a [space] character inadvertently removed in a887d653. Reviewed-by: Brian Behlendorf Reviewed-by: George Melikov Reviewed-by: Chris Dunlop Signed-off-by: loli10K Closes #8786 --- include/spl/sys/debug.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/spl/sys/debug.h b/include/spl/sys/debug.h index b17d77d280..ecda6bcb89 100644 --- a/include/spl/sys/debug.h +++ b/include/spl/sys/debug.h @@ -102,7 +102,7 @@ void spl_dumpstack(void); if (!(_verify3_left OP _verify3_right)) \ spl_panic(__FILE__, __FUNCTION__, __LINE__, \ "VERIFY3(" #LEFT " " #OP " " #RIGHT ") " \ - "failed (%px" #OP " %px)\n", \ + "failed (%px " #OP " %px)\n", \ (void *) (_verify3_left), \ (void *) (_verify3_right)); \ } while (0)