Skip to content

Commit 708d3c4

Browse files
author
liujinhu_llpt
authored
Update ff_syscall_wrapper.c
1 parent 8d9968f commit 708d3c4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/ff_syscall_wrapper.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -371,7 +371,7 @@ freebsd2linux_fcntl(int cmd, int flags)
371371

372372
if (flags & O_ASYNC) {
373373
//clear linux O_ASYNC, set freebsd O_ASYNC.
374-
*flags &= ~O_ASYNC;
374+
flags &= ~O_ASYNC;
375375
flags |= LINUX_O_ASYNC;
376376
}
377377

0 commit comments

Comments
 (0)