summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYann Collet <Cyan4973@users.noreply.github.com>2016-09-22 17:13:05 (GMT)
committerGitHub <noreply@github.com>2016-09-22 17:13:05 (GMT)
commit1ca408105d7774bd1f379b9ec695ac7579cd456c (patch)
tree8abd5fd32e2da9faf0ce99980f8cefd2b81a4e14
parent3b9439ccd043fe5704af6528f3b3155cf6f8f0c4 (diff)
parent46a7b94e8cf4c56eafcddeca09c63df368bfa4cb (diff)
downloadlz4-1ca408105d7774bd1f379b9ec695ac7579cd456c.zip
lz4-1ca408105d7774bd1f379b9ec695ac7579cd456c.tar.gz
lz4-1ca408105d7774bd1f379b9ec695ac7579cd456c.tar.bz2
Merge pull request #239 from kou/use-lower-case-for-header-name
Use lower case for header file name
-rw-r--r--programs/lz4io.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/programs/lz4io.c b/programs/lz4io.c
index 1e9a2f5..f8eadf0 100644
--- a/programs/lz4io.c
+++ b/programs/lz4io.c
@@ -70,7 +70,7 @@
# if !defined(__DJGPP__)
# define SET_BINARY_MODE(file) { int unused=_setmode(_fileno(file), _O_BINARY); (void)unused; }
# include <windows.h> /* DeviceIoControl, HANDLE, FSCTL_SET_SPARSE */
-# include <WinIoCtl.h> /* FSCTL_SET_SPARSE */
+# include <winioctl.h> /* FSCTL_SET_SPARSE */
# define SET_SPARSE_FILE_MODE(file) { DWORD dw; DeviceIoControl((HANDLE) _get_osfhandle(_fileno(file)), FSCTL_SET_SPARSE, 0, 0, 0, 0, &dw, 0); }
# if defined(_MSC_VER) && (_MSC_VER >= 1400) /* Avoid MSVC fseek()'s 2GiB barrier */
# define fseek _fseeki64