diff options
author | Joe Perches <joe@perches.com> | 2014-03-05 17:34:36 -0500 |
---|---|---|
committer | Eric Paris <eparis@redhat.com> | 2014-03-20 10:11:58 -0400 |
commit | b7550787fe8b5beffb5f56fa11a87712d699d085 (patch) | |
tree | 01ec88fc8ea70dd90da8f7403008a18452a5fc45 /kernel | |
parent | f12835276c3182f2b998d93dfd60100cf4b60c05 (diff) |
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>
Diffstat (limited to 'kernel')
-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 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, | |||
1173 | */ | 1173 | */ |
1174 | buf = kmalloc(MAX_EXECVE_AUDIT_LEN + 1, GFP_KERNEL); | 1174 | buf = kmalloc(MAX_EXECVE_AUDIT_LEN + 1, GFP_KERNEL); |
1175 | if (!buf) { | 1175 | if (!buf) { |
1176 | audit_panic("out of memory for argv string\n"); | 1176 | audit_panic("out of memory for argv string"); |
1177 | return; | 1177 | return; |
1178 | } | 1178 | } |
1179 | 1179 | ||