forked from OSchip/llvm-project
[lldb] [Process/NetBSD] Use nullptr to fix template arg deduction
llvm-svn: 356960
This commit is contained in:
parent
9bcb0766eb
commit
c5d7bc86b8
|
@ -666,7 +666,7 @@ Status NativeProcessNetBSD::Attach() {
|
|||
// Need to use WALLSIG otherwise we receive an error with errno=ECHLD At this
|
||||
// point we should have a thread stopped if waitpid succeeds.
|
||||
if ((wstatus = llvm::sys::RetryAfterSignal(-1, waitpid,
|
||||
m_pid, NULL, WALLSIG)) < 0)
|
||||
m_pid, nullptr, WALLSIG)) < 0)
|
||||
return Status(errno, eErrorTypePOSIX);
|
||||
|
||||
/* Initialize threads */
|
||||
|
|
Loading…
Reference in New Issue