[PATCH]Style fix for fs/select.c

From: Cong WANG
Date: Tue Feb 13 2007 - 03:23:11 EST


Style fix in fs/select.c.

Signed-off-by: WANG Cong <xiyou.wangcong@xxxxxxxxx>
----
--- fs/select.c.orig 2007-02-13 12:42:37.000000000 +0800
+++ fs/select.c 2007-02-13 12:46:44.000000000 +0800
@@ -65,7 +65,7 @@ EXPORT_SYMBOL(poll_initwait);

static void free_poll_entry(struct poll_table_entry *entry)
{
- remove_wait_queue(entry->wait_address,&entry->wait);
+ remove_wait_queue(entry->wait_address, &entry->wait);
fput(entry->filp);
}

@@ -129,7 +129,7 @@ static void __pollwait(struct file *filp
entry->filp = filp;
entry->wait_address = wait_address;
init_waitqueue_entry(&entry->wait, current);
- add_wait_queue(wait_address,&entry->wait);
+ add_wait_queue(wait_address, &entry->wait);
}

#define FDS_IN(fds, n) (fds->in + n)
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/