summaryrefslogtreecommitdiff
path: root/lib/System/DynamicLibrary.cpp
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2005-01-02 09:45:04 +0000
committerReid Spencer <rspencer@reidspencer.com>2005-01-02 09:45:04 +0000
commitd6b1f5fee6bc5294d926f97f4da3863a03377c52 (patch)
treed9b2bbc49d0dd110c39b4b022541857b7ee8e457 /lib/System/DynamicLibrary.cpp
parent2ee430cc3caabac9c439e7c6343a643d586f2eae (diff)
downloadllvm-d6b1f5fee6bc5294d926f97f4da3863a03377c52.tar.gz
llvm-d6b1f5fee6bc5294d926f97f4da3863a03377c52.tar.bz2
llvm-d6b1f5fee6bc5294d926f97f4da3863a03377c52.tar.xz
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
Diffstat (limited to 'lib/System/DynamicLibrary.cpp')
-rw-r--r--lib/System/DynamicLibrary.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/System/DynamicLibrary.cpp b/lib/System/DynamicLibrary.cpp
index 0c3caac0f1..e458d84927 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