Skip to content

Commit

Permalink
normalize
Browse files Browse the repository at this point in the history
  • Loading branch information
MacroModel committed Dec 16, 2024
1 parent 87eb48c commit 410217b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/fast_io_hosted/process/process/posix.h
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ inline pid_t pipefork_execveat_common_impl(int dirfd, char const *cstr, char con
}
else
{
posix_waitpid_noexcept(pid);
::fast_io::details::posix_waitpid_noexcept(pid);
if (n == err_buffer_end)
{
throw_posix_error(errno_from_subproc);
Expand Down Expand Up @@ -665,7 +665,7 @@ class posix_process : public posix_process_observer
}
inline ~posix_process()
{
details::posix_waitpid_noexcept(this->pid);
::fast_io::details::posix_waitpid_noexcept(this->pid);
this->pid = -1;
}
};
Expand Down

0 comments on commit 410217b

Please sign in to comment.