diff options
author | J. Bruce Fields <bfields@citi.umich.edu> | 2007-02-14 20:25:00 +0100 |
---|---|---|
committer | J. Bruce Fields <bfields@citi.umich.edu> | 2007-04-16 19:40:37 +0200 |
commit | 226a998dbf3c6f9b85f67d08a52c5a2143ed9d88 (patch) | |
tree | 1c7c6e08a515243cc5747ef99bba24f702a18b23 /fs/locks.c | |
parent | Linux 2.6.21-rc7 (diff) | |
download | linux-226a998dbf3c6f9b85f67d08a52c5a2143ed9d88.tar.xz linux-226a998dbf3c6f9b85f67d08a52c5a2143ed9d88.zip |
locks: trivial removal of unnecessary parentheses
Remove some unnecessary parentheses.
Signed-off-by: "J. Bruce Fields" <bfields@citi.umich.edu>
Diffstat (limited to 'fs/locks.c')
-rw-r--r-- | fs/locks.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/locks.c b/fs/locks.c index 52a81005dab4..1a00b8bc65ed 100644 --- a/fs/locks.c +++ b/fs/locks.c @@ -1738,7 +1738,7 @@ again: else { for (;;) { error = posix_lock_file(filp, file_lock); - if ((error != -EAGAIN) || (cmd == F_SETLK)) + if (error != -EAGAIN || cmd == F_SETLK) break; error = wait_event_interruptible(file_lock->fl_wait, !file_lock->fl_next); @@ -1881,7 +1881,7 @@ again: else { for (;;) { error = posix_lock_file(filp, file_lock); - if ((error != -EAGAIN) || (cmd == F_SETLK64)) + if (error != -EAGAIN || cmd == F_SETLK64) break; error = wait_event_interruptible(file_lock->fl_wait, !file_lock->fl_next); |