Skip to content

Commit

Permalink
Fix case of include file name
Browse files Browse the repository at this point in the history
Windows.h works on Windows, but not for cross builds on Linux hosts
with case sensitive file systems which only provide windows.h.

Signed-off-by: Stefan Weil <[email protected]>
  • Loading branch information
stweil committed Nov 5, 2015
1 parent 3272b62 commit 511e7f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion opencl/openclwrapper.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#ifdef _WIN32
#include <Windows.h>
#include <windows.h>
#include <io.h>

#else
Expand Down

0 comments on commit 511e7f7

Please sign in to comment.