From d8a5273993b11cbae7fb3690ad9b3025b6ea511b Mon Sep 17 00:00:00 2001 From: Zachary Turner Date: Tue, 29 Jul 2014 05:39:21 +0000 Subject: [PATCH] Fix compile error on Windows. A piece of a future patch accidentally made it in, this simply fixes the error. llvm-svn: 214161 --- lldb/source/Host/common/Host.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lldb/source/Host/common/Host.cpp b/lldb/source/Host/common/Host.cpp index d058c2f..32a1a08 100644 --- a/lldb/source/Host/common/Host.cpp +++ b/lldb/source/Host/common/Host.cpp @@ -884,7 +884,7 @@ Host::GetProgramFileSpec () #elif defined(_WIN32) std::vector buffer(PATH_MAX); ::GetModuleFileName(NULL, &buffer[0], buffer.size()); - g_program_filespec.SetFile(&buffer[0], false, FileSpec::ePathSyntaxWindows); + g_program_filespec.SetFile(&buffer[0], false); #endif } return g_program_filespec; -- 2.7.4