From 32ed478d407006940f5f6a90302226524ac7c87c Mon Sep 17 00:00:00 2001 From: Chris Bieneman Date: Wed, 19 Apr 2017 01:15:17 +0000 Subject: [PATCH] Buildbot wack-a-mole! This should fix the netbsd bot I just broke. llvm-svn: 300638 --- lldb/source/Host/common/MainLoop.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lldb/source/Host/common/MainLoop.cpp b/lldb/source/Host/common/MainLoop.cpp index 8fbc51b239f5..113606126145 100644 --- a/lldb/source/Host/common/MainLoop.cpp +++ b/lldb/source/Host/common/MainLoop.cpp @@ -141,7 +141,7 @@ void MainLoop::UnregisterReadObject(IOObject::WaitableHandle handle) { void MainLoop::UnregisterSignal(int signo) { #if SIGNAL_POLLING_UNSUPPORTED - error.SetErrorString("Signal polling is not supported on this platform."); + Error("Signal polling is not supported on this platform."); return nullptr; #else // We undo the actions of RegisterSignal on a best-effort basis.