Update ff_syscall_wrapper.c

This commit is contained in:
liujinhu_llpt 2025-03-18 15:25:03 +08:00 committed by GitHub
parent 8d9968f09f
commit 708d3c48ef
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -371,7 +371,7 @@ freebsd2linux_fcntl(int cmd, int flags)
if (flags & O_ASYNC) {
//clear linux O_ASYNC, set freebsd O_ASYNC.
*flags &= ~O_ASYNC;
flags &= ~O_ASYNC;
flags |= LINUX_O_ASYNC;
}