]> git.ipfire.org Git - thirdparty/zstd.git/commitdiff
Use lowercase windows.h
authorJohn Ericson <John.Ericson@Obsidian.Systems>
Tue, 12 Nov 2019 23:59:06 +0000 (18:59 -0500)
committerJohn Ericson <John.Ericson@Obsidian.Systems>
Wed, 13 Nov 2019 00:03:01 +0000 (19:03 -0500)
Helps for cross builds, doesn't matter on Windows itself.

programs/timefn.h

index d1ddd31b1c0003b582b1c28e6dfe0b1ddd239ad9..37802a80466bba81e26a6d1fc42a1487c4df3740 100644 (file)
@@ -47,7 +47,7 @@ extern "C" {
 ******************************************/
 #if defined(_WIN32)   /* Windows */
 
-    #include <Windows.h>   /* LARGE_INTEGER */
+    #include <windows.h>   /* LARGE_INTEGER */
     typedef LARGE_INTEGER UTIL_time_t;
     #define UTIL_TIME_INITIALIZER { { 0, 0 } }