Skip to content

Commit

Permalink
tty_audit: fix checkpatch complaint
Browse files Browse the repository at this point in the history
Signed-off-by: Alan Cox <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
  • Loading branch information
Alan-Cox authored and Linus Torvalds committed Feb 8, 2008
1 parent 4129a64 commit 66c6cea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/char/tty_audit.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 66c6cea

Please sign in to comment.