diff options
author | David Jenni <dave.j@gmx.ch> | 2011-02-23 16:51:05 +0100 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2011-03-21 00:16:09 -0400 |
commit | ff38c083ad3bb8dbbed80aa9090fcc96bc4af7db (patch) | |
tree | cdd971dd9ecb86644560eb415daca9ee1dba91b3 | |
parent | eaae668d01e15435cf977cced3975ccc436257fc (diff) | |
download | op-kernel-dev-ff38c083ad3bb8dbbed80aa9090fcc96bc4af7db.zip op-kernel-dev-ff38c083ad3bb8dbbed80aa9090fcc96bc4af7db.tar.gz |
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>
-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) /* suppress POLLHUP until we have * seen a writer */ filp->f_version = pipe->w_counter; - } else - { + } else { wait_for_partner(inode, &pipe->w_counter); if(signal_pending(current)) goto err_rd; |