[lldb] [Process/NetBSD] Fix constructor after r363707

llvm-svn: 363827
This commit is contained in:
Michal Gorny 2019-06-19 15:49:47 +00:00
parent 8d92f59696
commit a5992997d9
1 changed files with 1 additions and 1 deletions

View File

@ -140,7 +140,7 @@ NativeProcessNetBSD::NativeProcessNetBSD(::pid_t pid, int terminal_fd,
NativeDelegate &delegate,
const ArchSpec &arch,
MainLoop &mainloop)
: NativeProcessProtocol(pid, terminal_fd, delegate), m_arch(arch) {
: NativeProcessELF(pid, terminal_fd, delegate), m_arch(arch) {
if (m_terminal_fd != -1) {
Status status = EnsureFDFlags(m_terminal_fd, O_NONBLOCK);
assert(status.Success());