From d6b1f5fee6bc5294d926f97f4da3863a03377c52 Mon Sep 17 00:00:00 2001 From: Reid Spencer Date: Sun, 2 Jan 2005 09:45:04 +0000 Subject: [PATCH] Correct the case of a #include directory name, just in case. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19254 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/System/DynamicLibrary.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/System/DynamicLibrary.cpp b/lib/System/DynamicLibrary.cpp index 0c3caac0f10..e458d84927e 100644 --- a/lib/System/DynamicLibrary.cpp +++ b/lib/System/DynamicLibrary.cpp @@ -22,7 +22,7 @@ #ifdef LLVM_ON_WIN32 -#include "win32/DynamicLibrary.cpp" +#include "Win32/DynamicLibrary.cpp" #else