From 715bd76487b1848387a73048f4e30fee5c4d4f92 Mon Sep 17 00:00:00 2001 From: Jeff Cohen Date: Sun, 29 Jan 2006 22:02:52 +0000 Subject: [PATCH] Fix indentation. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25795 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/System/Win32/DynamicLibrary.inc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/System/Win32/DynamicLibrary.inc b/lib/System/Win32/DynamicLibrary.inc index 12ea8ec4fb2..1492138682f 100644 --- a/lib/System/Win32/DynamicLibrary.inc +++ b/lib/System/Win32/DynamicLibrary.inc @@ -92,12 +92,12 @@ void DynamicLibrary::LoadLibraryPermanently(const char* filename) { if (filename) { HMODULE a_handle = LoadLibrary(filename); - if (a_handle == 0) - ThrowError(std::string(filename) + ": Can't open : "); + if (a_handle == 0) + ThrowError(std::string(filename) + ": Can't open : "); - OpenedHandles.push_back(a_handle); + OpenedHandles.push_back(a_handle); } else { - // When no file is specified, enumerate all DLLs and EXEs in the + // When no file is specified, enumerate all DLLs and EXEs in the // process. EnumerateLoadedModules(GetCurrentProcess(), ELM_Callback, 0); } -- 2.34.1