hurd: Fix typo in msync
authorSamuel Thibault <samuel.thibault@ens-lyon.org>
Tue, 31 Aug 2021 12:36:08 +0000 (14:36 +0200)
committerSamuel Thibault <samuel.thibault@ens-lyon.org>
Tue, 31 Aug 2021 12:55:25 +0000 (14:55 +0200)
== has higher priority than &

sysdeps/mach/hurd/msync.c

index 4311dd56d17e6e828c3bfa0d167e63bbefa5313c..a1244e42e2b994835ddca1f1fac2cd944a0b7e3e 100644 (file)
@@ -47,7 +47,7 @@ msync (void *addr, size_t length, int flags)
   kern_return_t err;
   int cancel_oldtype;
 
-  if (flags & (MS_SYNC | MS_ASYNC) == (MS_SYNC | MS_ASYNC))
+  if ((flags & (MS_SYNC | MS_ASYNC)) == (MS_SYNC | MS_ASYNC))
     return __hurd_fail (EINVAL);
 
   while (cur < target)