aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/audit.c
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/audit.c')
-rw-r--r--kernel/audit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/audit.c b/kernel/audit.c
index 74779d3769fa..a0e33b6897d7 100644
--- a/kernel/audit.c
+++ b/kernel/audit.c
@@ -703,7 +703,7 @@ static void audit_log_vformat(struct audit_buffer *ab, const char *fmt,
703 /* The printk buffer is 1024 bytes long, so if we get 703 /* The printk buffer is 1024 bytes long, so if we get
704 * here and AUDIT_BUFSIZ is at least 1024, then we can 704 * here and AUDIT_BUFSIZ is at least 1024, then we can
705 * log everything that printk could have logged. */ 705 * log everything that printk could have logged. */
706 avail = audit_expand(ab, max_t(AUDIT_BUFSIZ, 1+len-avail)); 706 avail = audit_expand(ab, max_t(unsigned, AUDIT_BUFSIZ, 1+len-avail));
707 if (!avail) 707 if (!avail)
708 goto out; 708 goto out;
709 len = vsnprintf(skb->tail, avail, fmt, args2); 709 len = vsnprintf(skb->tail, avail, fmt, args2);