[Lldb-commits] [lldb] r227998 - Fix compilation failure on Windows.

Zachary Turner zturner at google.com
Tue Feb 3 10:26:00 PST 2015


Author: zturner
Date: Tue Feb  3 12:26:00 2015
New Revision: 227998

URL: http://llvm.org/viewvc/llvm-project?rev=227998&view=rev
Log:
Fix compilation failure on Windows.

Modified:
    lldb/trunk/source/Host/windows/HostInfoWindows.cpp

Modified: lldb/trunk/source/Host/windows/HostInfoWindows.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Host/windows/HostInfoWindows.cpp?rev=227998&r1=227997&r2=227998&view=diff
==============================================================================
--- lldb/trunk/source/Host/windows/HostInfoWindows.cpp (original)
+++ lldb/trunk/source/Host/windows/HostInfoWindows.cpp Tue Feb  3 12:26:00 2015
@@ -91,7 +91,7 @@ HostInfoWindows::GetProgramFileSpec()
         char buffer[PATH_MAX];
         ::GetModuleFileName(NULL, buffer, sizeof(buffer));
         m_program_filespec.SetFile(buffer, false);
-    }
+    });
     return m_program_filespec;
 }
 





More information about the lldb-commits mailing list