diff options
author | WANG Cong <xiyou.wangcong@gmail.com> | 2007-05-09 07:10:02 +0200 |
---|---|---|
committer | Adrian Bunk <bunk@stusta.de> | 2007-05-09 07:10:02 +0200 |
commit | ccf6780dc3d228f380e17b6858b93fc48e40afd4 (patch) | |
tree | 4b905fcccab11e2016969c876d7320b0271e10aa /fs/select.c | |
parent | d3e6975e0f25044c4c86f5a42c9917090973636b (diff) | |
download | linux-ccf6780dc3d228f380e17b6858b93fc48e40afd4.tar.bz2 |
Style fix in fs/select.c
Signed-off-by: WANG Cong <xiyou.wangcong@gmail.com>
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Diffstat (limited to 'fs/select.c')
-rw-r--r-- | fs/select.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/select.c b/fs/select.c index d86224154dec..a974082b0824 100644 --- a/fs/select.c +++ b/fs/select.c @@ -64,7 +64,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); } @@ -128,7 +128,7 @@ static void __pollwait(struct file *filp, wait_queue_head_t *wait_address, 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) |