Revert "[lldb] [Process/NetBSD] Fix constructor after r363707"
authorMichal Gorny <mgorny@gentoo.org>
Mon, 1 Jul 2019 14:38:47 +0000 (14:38 +0000)
committerMichal Gorny <mgorny@gentoo.org>
Mon, 1 Jul 2019 14:38:47 +0000 (14:38 +0000)
Now that r364751 has been reverted, we need to revert this fixup
as well.

llvm-svn: 364776

lldb/source/Plugins/Process/NetBSD/NativeProcessNetBSD.cpp

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