Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartijn Berger <mberger@denc.com>2016-09-19 15:20:37 +0300
committerMartijn Berger <mberger@denc.com>2016-09-19 15:22:38 +0300
commitcc9d0eff818db57362d6de3769999c86cd4c99ef (patch)
tree743ae8ba57c1c2fe6992de59bab2c7763306459d /source/blender/blenlib
parent25ee0942266b698363a2fb9f092ca68f58044064 (diff)
Lowercase includes for psapi.h and dbghelp.h windows includes.
This makes cross compilation a little less painful
Diffstat (limited to 'source/blender/blenlib')
-rw-r--r--source/blender/blenlib/intern/system.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenlib/intern/system.c b/source/blender/blenlib/intern/system.c
index 898075e651e..863622f2546 100644
--- a/source/blender/blenlib/intern/system.c
+++ b/source/blender/blenlib/intern/system.c
@@ -35,7 +35,7 @@
# include <execinfo.h>
#elif defined(WIN32)
# include <windows.h>
-# include <DbgHelp.h>
+# include <dbghelp.h>
#endif
int BLI_cpu_support_sse2(void)