diff options
author | Michael I. Bushnell <mib@gnu.org> | 1995-06-26 23:50:29 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1995-06-26 23:50:29 +0000 |
commit | 37cd3d779faf8d3ecfc16ffbeeaa4cd4e06c4fa8 (patch) | |
tree | 8d35f7e2caafd4869b70c6e0ec5611628594ceb4 /libdiskfs/shutdown.c | |
parent | ba9eec6a751feaacd0092edaa652f25de96f4a87 (diff) |
(diskfs_shutdown): Fix parens.
Diffstat (limited to 'libdiskfs/shutdown.c')
-rw-r--r-- | libdiskfs/shutdown.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libdiskfs/shutdown.c b/libdiskfs/shutdown.c index 23f48127..d5539ef7 100644 --- a/libdiskfs/shutdown.c +++ b/libdiskfs/shutdown.c @@ -48,7 +48,7 @@ diskfs_shutdown (int flags) 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; |