From: Alan Cox Date: Fri, 8 Feb 2008 12:18:46 +0000 (-0800) Subject: tty_audit: fix checkpatch complaint X-Git-Tag: v2.6.25-rc1~248 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=66c6ceae39534c029c3434489c036f5ae2c6a593;p=thirdparty%2Flinux.git tty_audit: fix checkpatch complaint Signed-off-by: Alan Cox Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/drivers/char/tty_audit.c b/drivers/char/tty_audit.c index bacded0eefabc..7722466e052fa 100644 --- a/drivers/char/tty_audit.c +++ b/drivers/char/tty_audit.c @@ -27,7 +27,7 @@ static struct tty_audit_buf *tty_audit_buf_alloc(int major, int minor, { struct tty_audit_buf *buf; - buf = kmalloc(sizeof (*buf), GFP_KERNEL); + buf = kmalloc(sizeof(*buf), GFP_KERNEL); if (!buf) goto err; if (PAGE_SIZE != N_TTY_BUF_SIZE)