diff options
author | Michael I. Bushnell <mib@gnu.org> | 1995-06-26 23:51:06 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1995-06-26 23:51:06 +0000 |
commit | 739baa431be845addfef81f6147daaa8ced91147 (patch) | |
tree | e8ac0174a51acbf2fd8c055dadbc0b5c4335a470 /libdiskfs | |
parent | 37cd3d779faf8d3ecfc16ffbeeaa4cd4e06c4fa8 (diff) |
(diskfs_S_fsys_set_options): Fix parens.
Diffstat (limited to 'libdiskfs')
-rw-r--r-- | libdiskfs/fsys-options.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libdiskfs/fsys-options.c b/libdiskfs/fsys-options.c index f793e5cf..b2026bc5 100644 --- a/libdiskfs/fsys-options.c +++ b/libdiskfs/fsys-options.c @@ -55,7 +55,7 @@ diskfs_S_fsys_set_options (fsys_t fsys, error = 0; mutex_lock (&np->lock); - if (error == MIG_SERVER_DIED || error == MACH_SEND_INVALID_DEST) + if ((error == MIG_SERVER_DIED) || (error == MACH_SEND_INVALID_DEST)) error = 0; return error; } |