Skip to content

Commit

Permalink
audit: remove stray newline from audit_log_execve_info() audit_panic(…
Browse files Browse the repository at this point in the history
…) call

There's an unnecessary use of a \n in audit_panic.

Signed-off-by: Richard Guy Briggs <[email protected]>
  • Loading branch information
JoePerches authored and eparis committed Mar 20, 2014
1 parent f128352 commit b755078
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kernel/auditsc.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down

0 comments on commit b755078

Please sign in to comment.