[lldb] [Process/NetBSD] Use nullptr to fix template arg deduction

llvm-svn: 356960
This commit is contained in:
Michal Gorny 2019-03-25 22:29:29 +00:00
parent 9bcb0766eb
commit c5d7bc86b8
1 changed files with 1 additions and 1 deletions

View File

@ -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 */