From 57cfe3405bf61e3879e2bc1eca0f2c0e6d55812d Mon Sep 17 00:00:00 2001 From: Zachary Turner Date: Wed, 8 Oct 2014 20:59:55 +0000 Subject: [PATCH] Fix compile error on posix. llvm-svn: 219340 --- lldb/include/lldb/Host/Pipe.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lldb/include/lldb/Host/Pipe.h b/lldb/include/lldb/Host/Pipe.h index b748788c5ee3..e92d613f7e6a 100644 --- a/lldb/include/lldb/Host/Pipe.h +++ b/lldb/include/lldb/Host/Pipe.h @@ -13,7 +13,7 @@ #if defined(_WIN32) #include "lldb/Host/windows/PipeWindows.h" #else -#include "lldb/Host/windows/PipePosix.h" +#include "lldb/Host/posix/PipePosix.h" #endif #endif // liblldb_Host_Pipe_h_