[fuzzer] Fix building on case sensitive mingw platforms

Include windows.h with an all lowercase filename; Windows SDK headers
aren't self consistent so they can't be used in an entirely
case sensitive setting, and mingw headers use all lowercase names
for such headers.

This fixes building after 881faf4190.
This commit is contained in:
Martin Storsjö 2021-08-06 08:51:21 +03:00
parent a1b21ed3fb
commit ab737d5367
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@
#include <cstdint>
#if LIBFUZZER_WINDOWS
#include <Windows.h>
#include <windows.h>
namespace fuzzer {