diff options
author | loli10K <[email protected]> | 2019-05-24 23:06:53 +0200 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2019-05-24 14:06:53 -0700 |
commit | d28b492ab374675df0b94f83aa6bfbca2d8264f9 (patch) | |
tree | cddf1eb6e928565616a47f3296b0b08e705b38d0 /include/spl | |
parent | 2696e86f2b5c6dfb66fb809d7070ffb2c25b3f28 (diff) |
VERIFY3P() message is missing a space character
This commit just reintroduces a [space] character inadvertently removed
in a887d653.
Reviewed-by: Brian Behlendorf <[email protected]>
Reviewed-by: George Melikov <[email protected]>
Reviewed-by: Chris Dunlop <[email protected]>
Signed-off-by: loli10K <[email protected]>
Closes #8786
Diffstat (limited to 'include/spl')
-rw-r--r-- | include/spl/sys/debug.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/spl/sys/debug.h b/include/spl/sys/debug.h index b17d77d28..ecda6bcb8 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) |