diff options
author | Alan Cox <alan@lxorguk.ukuu.org.uk> | 2008-02-08 07:18:46 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2008-02-08 12:22:25 -0500 |
commit | 66c6ceae39534c029c3434489c036f5ae2c6a593 (patch) | |
tree | 8ca5664b5d07f81f57e7eed7a9d6205a51fb70ce /drivers/char/tty_audit.c | |
parent | 4129a6454dd925560bf3f46a12eb9f01cf8d5e7e (diff) |
tty_audit: fix checkpatch complaint
Signed-off-by: Alan Cox <alan@redhat.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/char/tty_audit.c')
-rw-r--r-- | drivers/char/tty_audit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/char/tty_audit.c b/drivers/char/tty_audit.c index bacded0eefab..7722466e052f 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, | |||
27 | { | 27 | { |
28 | struct tty_audit_buf *buf; | 28 | struct tty_audit_buf *buf; |
29 | 29 | ||
30 | buf = kmalloc(sizeof (*buf), GFP_KERNEL); | 30 | buf = kmalloc(sizeof(*buf), GFP_KERNEL); |
31 | if (!buf) | 31 | if (!buf) |
32 | goto err; | 32 | goto err; |
33 | if (PAGE_SIZE != N_TTY_BUF_SIZE) | 33 | if (PAGE_SIZE != N_TTY_BUF_SIZE) |