aboutsummaryrefslogtreecommitdiffstats
path: root/fs/fifo.c
diff options
context:
space:
mode:
authorDavid Jenni <dave.j@gmx.ch>2011-02-23 10:51:05 -0500
committerAl Viro <viro@zeniv.linux.org.uk>2011-03-21 00:16:09 -0400
commitff38c083ad3bb8dbbed80aa9090fcc96bc4af7db (patch)
treecdd971dd9ecb86644560eb415daca9ee1dba91b3 /fs/fifo.c
parenteaae668d01e15435cf977cced3975ccc436257fc (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.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/fifo.c b/fs/fifo.c
index 4e303c22d5ee..b1a524d798e7 100644
--- a/fs/fifo.c
+++ b/fs/fifo.c
@@ -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;