Browse Source

Use lowercase "windows.h" instead of "Windows.h"

Fixes #1165

While the Microsoft documentation uses "Windows.h" some other source files already use "windows.h".
bel2125 2 years ago
parent
commit
c1cf4be2d3
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/civetweb.c

+ 1 - 1
src/civetweb.c

@@ -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 */