From: Joe Perches Date: Wed, 5 Mar 2014 22:34:36 +0000 (-0800) Subject: audit: remove stray newline from audit_log_execve_info() audit_panic() call X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=b7550787fe8b5beffb5f56fa11a87712d699d085;p=linux-beck.git audit: remove stray newline from audit_log_execve_info() audit_panic() call There's an unnecessary use of a \n in audit_panic. Signed-off-by: Richard Guy Briggs --- diff --git a/kernel/auditsc.c b/kernel/auditsc.c index bd3de52600ff..254ce2063d1d 100644 --- a/kernel/auditsc.c +++ b/kernel/auditsc.c @@ -1173,7 +1173,7 @@ static void audit_log_execve_info(struct audit_context *context, */ buf = kmalloc(MAX_EXECVE_AUDIT_LEN + 1, GFP_KERNEL); if (!buf) { - audit_panic("out of memory for argv string\n"); + audit_panic("out of memory for argv string"); return; }