diff options
author | David Woodhouse <dwmw2@shinybook.infradead.org> | 2005-05-13 18:50:33 +0100 |
---|---|---|
committer | David Woodhouse <dwmw2@shinybook.infradead.org> | 2005-05-13 18:50:33 +0100 |
commit | 5e014b10ef8477c32a939a48fa02aedcad35a226 (patch) | |
tree | 8c314b8485aff98506402976c3bca1011735a633 | |
parent | 23f32d18aa589e228c5a9e12e0d0c67c9b5bcdce (diff) | |
download | kernel_samsung_espresso10-5e014b10ef8477c32a939a48fa02aedcad35a226.zip kernel_samsung_espresso10-5e014b10ef8477c32a939a48fa02aedcad35a226.tar.gz kernel_samsung_espresso10-5e014b10ef8477c32a939a48fa02aedcad35a226.tar.bz2 |
AUDIT: fix max_t thinko.
Der... if you use max_t it helps if you give it a type.
Note to self: Always just apply the tested patches, don't try to port
them by hand. You're not clever enough.
Signed-off-by: David Woodhouse <dwmw2@infradead.org>
-rw-r--r-- | kernel/audit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/audit.c b/kernel/audit.c index 74779d3..a0e33b6 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, /* The printk buffer is 1024 bytes long, so if we get * here and AUDIT_BUFSIZ is at least 1024, then we can * log everything that printk could have logged. */ - avail = audit_expand(ab, max_t(AUDIT_BUFSIZ, 1+len-avail)); + avail = audit_expand(ab, max_t(unsigned, AUDIT_BUFSIZ, 1+len-avail)); if (!avail) goto out; len = vsnprintf(skb->tail, avail, fmt, args2); |