]> git.feebdaed.xyz Git - 0xmirror/civetweb.git/commitdiff
Use lowercase "windows.h" instead of "Windows.h"
authorbel2125 <bel2125@gmail.com>
Sun, 14 May 2023 08:59:26 +0000 (10:59 +0200)
committerbel2125 <bel2125@gmail.com>
Sun, 14 May 2023 08:59:26 +0000 (10:59 +0200)
Fixes #1165

While the Microsoft documentation uses "Windows.h" some other source files already use "windows.h".

src/civetweb.c

index 064aca290d6e99ba263edb7b364dc5bd4e06a479..1de1531faa0261d80e1c38325fa44c0d68de11b5 100644 (file)
@@ -525,7 +525,7 @@ mg_static_assert(sizeof(size_t) == 4 || sizeof(size_t) == 8,
 
 
 #if defined(_WIN32) /* WINDOWS include block */
-#include <Windows.h>
+#include <windows.h>
 #include <malloc.h>   /* *alloc( */
 #include <stdlib.h>   /* *alloc( */
 #include <time.h>     /* struct timespec */