diff options
author | David Jenni <dave.j@gmx.ch> | 2011-02-23 10:51:05 -0500 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2011-03-21 00:16:09 -0400 |
commit | ff38c083ad3bb8dbbed80aa9090fcc96bc4af7db (patch) | |
tree | cdd971dd9ecb86644560eb415daca9ee1dba91b3 /fs/fifo.c | |
parent | eaae668d01e15435cf977cced3975ccc436257fc (diff) |
Filesystem: fifo: Fixed coding style issue.
Fixed coding style issue.
Signed-off-by: David Jenni <dave.j@gmx.ch>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/fifo.c')
-rw-r--r-- | fs/fifo.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -66,8 +66,7 @@ static int fifo_open(struct inode *inode, struct file *filp) | |||
66 | /* suppress POLLHUP until we have | 66 | /* suppress POLLHUP until we have |
67 | * seen a writer */ | 67 | * seen a writer */ |
68 | filp->f_version = pipe->w_counter; | 68 | filp->f_version = pipe->w_counter; |
69 | } else | 69 | } else { |
70 | { | ||
71 | wait_for_partner(inode, &pipe->w_counter); | 70 | wait_for_partner(inode, &pipe->w_counter); |
72 | if(signal_pending(current)) | 71 | if(signal_pending(current)) |
73 | goto err_rd; | 72 | goto err_rd; |