]> git.proxmox.com Git - mirror_zfs.git/commitdiff
VERIFY3P() message is missing a space character
authorloli10K <loli10K@users.noreply.github.com>
Fri, 24 May 2019 21:06:53 +0000 (23:06 +0200)
committerBrian Behlendorf <behlendorf1@llnl.gov>
Fri, 24 May 2019 21:06:53 +0000 (14:06 -0700)
This commit just reintroduces a [space] character inadvertently removed
in a887d653.

Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
Reviewed-by: George Melikov <mail@gmelikov.ru>
Reviewed-by: Chris Dunlop <chris@onthe.net.au>
Signed-off-by: loli10K <ezomori.nozomu@gmail.com>
Closes #8786

include/spl/sys/debug.h

index b17d77d280a994de5ee8b1a3d076a495b6d97354..ecda6bcb895927992dc4f1411b7586909110cabd 100644 (file)
@@ -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)