Commit 5e3c0dc7 authored by Cyrill Gorcunov's avatar Cyrill Gorcunov

util: Add missing \n into BUG_ON_HANDLER

Signed-off-by: 's avatarCyrill Gorcunov <gorcunov@openvz.org>
Acked-by: 's avatarPavel Emelyanov <xemul@parallels.com>
parent 7b4c352b
...@@ -49,7 +49,7 @@ ...@@ -49,7 +49,7 @@
# define BUG_ON_HANDLER(condition) \ # define BUG_ON_HANDLER(condition) \
do { \ do { \
if ((condition)) { \ if ((condition)) { \
pr_err("BUG at %s:%d", __FILE__, __LINE__); \ pr_err("BUG at %s:%d\n", __FILE__, __LINE__); \
raise(SIGABRT); \ raise(SIGABRT); \
} \ } \
} while (0) } while (0)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment