diff options
author | Joe Perches <joe@perches.com> | 2014-03-05 14:34:36 -0800 |
---|---|---|
committer | Eric Paris <eparis@redhat.com> | 2014-03-20 10:11:58 -0400 |
commit | b7550787fe8b5beffb5f56fa11a87712d699d085 (patch) | |
tree | 01ec88fc8ea70dd90da8f7403008a18452a5fc45 | |
parent | f12835276c3182f2b998d93dfd60100cf4b60c05 (diff) | |
download | op-kernel-dev-b7550787fe8b5beffb5f56fa11a87712d699d085.zip op-kernel-dev-b7550787fe8b5beffb5f56fa11a87712d699d085.tar.gz |
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 <rgb@redhat.com>
-rw-r--r-- | kernel/auditsc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/auditsc.c b/kernel/auditsc.c index bd3de52..254ce20 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; } |