Skip to content

Commit

Permalink
Merge branch 'work/gh-8110' into v5.0-release
Browse files Browse the repository at this point in the history
  • Loading branch information
hvlad committed May 15, 2024
2 parents b5b65df + 4ebfd8b commit 7f2d1c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/common/os/posix/os_utils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,7 @@ void setCloseOnExec(int fd)
{
if (fd >= 0)
{
while (fcntl(fd, F_SETFD, O_CLOEXEC) < 0 && SYSCALL_INTERRUPTED(errno))
while (fcntl(fd, F_SETFD, FD_CLOEXEC) < 0 && SYSCALL_INTERRUPTED(errno))
;
}
}
Expand Down

0 comments on commit 7f2d1c0

Please sign in to comment.