diff options
| author | Jeff Cohen <jeffc@jolt-lang.org> | 2006-01-29 22:02:52 +0000 | 
|---|---|---|
| committer | Jeff Cohen <jeffc@jolt-lang.org> | 2006-01-29 22:02:52 +0000 | 
| commit | 8ee89c774be13fdc44e18e59d74645ad2635dcca (patch) | |
| tree | 6f8f28d17276f827bb97f870d057e937630b812c /llvm/lib/System | |
| parent | 4d1ea71a31ff645e317df9d39fa4af40609848bc (diff) | |
| download | bcm5719-llvm-8ee89c774be13fdc44e18e59d74645ad2635dcca.tar.gz bcm5719-llvm-8ee89c774be13fdc44e18e59d74645ad2635dcca.zip | |
Fix indentation.
llvm-svn: 25795
Diffstat (limited to 'llvm/lib/System')
| -rw-r--r-- | llvm/lib/System/Win32/DynamicLibrary.inc | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/llvm/lib/System/Win32/DynamicLibrary.inc b/llvm/lib/System/Win32/DynamicLibrary.inc index 12ea8ec4fb2..1492138682f 100644 --- a/llvm/lib/System/Win32/DynamicLibrary.inc +++ b/llvm/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);    } | 

