From 263fde068f11f55ca928899f6fc15416191f8252 Mon Sep 17 00:00:00 2001 From: Deepak Panickal Date: Tue, 14 Jan 2014 11:34:44 +0000 Subject: Fix return type for Windows llvm-svn: 199202 --- .../source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'lldb/source/Plugins/Process/gdb-remote') diff --git a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.cpp b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.cpp index 91658b98d61..9579e7cc2a5 100644 --- a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.cpp +++ b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.cpp @@ -806,8 +806,7 @@ GDBRemoteCommunication::PacketResult GDBRemoteCommunicationServer::Handle_qLaunchGDBServer (StringExtractorGDBRemote &packet) { #ifdef _WIN32 - // No unix sockets on windows - return false; + return SendErrorResponse(9); #else // Spawn a local debugserver as a platform so we can then attach or launch // a process... -- cgit v1.2.3