public inbox for glibc-cvs@sourceware.org
help / color / mirror / Atom feed
* [glibc] hurd: Fix typo in msync
@ 2021-08-31 12:55 Samuel Thibault
  0 siblings, 0 replies; only message in thread
From: Samuel Thibault @ 2021-08-31 12:55 UTC (permalink / raw)
  To: glibc-cvs

https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=e2930d8777c0331b5882e27cbb53f3cf8516a62d

commit e2930d8777c0331b5882e27cbb53f3cf8516a62d
Author: Samuel Thibault <samuel.thibault@ens-lyon.org>
Date:   Tue Aug 31 14:36:08 2021 +0200

    hurd: Fix typo in msync
    
    == has higher priority than &

Diff:
---
 sysdeps/mach/hurd/msync.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sysdeps/mach/hurd/msync.c b/sysdeps/mach/hurd/msync.c
index 4311dd56d1..a1244e42e2 100644
--- a/sysdeps/mach/hurd/msync.c
+++ b/sysdeps/mach/hurd/msync.c
@@ -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)


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2021-08-31 12:55 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-08-31 12:55 [glibc] hurd: Fix typo in msync Samuel Thibault

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).