Skip to content

Commit

Permalink
Style fix in fs/select.c
Browse files Browse the repository at this point in the history
Signed-off-by: WANG Cong  <xiyou.wangcong@gmail.com>
Signed-off-by: Adrian Bunk <bunk@stusta.de>
  • Loading branch information
WANG Cong authored and Adrian Bunk committed May 9, 2007
1 parent d3e6975 commit ccf6780
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fs/select.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

Expand Down Expand Up @@ -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)
Expand Down

0 comments on commit ccf6780

Please sign in to comment.