1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-17 05:03:07 +00:00

fix(crypto): update case of windows.h (#1560)

When building for windows on a case-sensitive system, mingw always comes with a lower-case windows.h
This commit is contained in:
xloem 2021-04-08 08:16:23 -04:00 committed by GitHub
parent 6b371749bc
commit e821104237
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,7 +4,7 @@
#include <string.h>
#ifdef _WIN32
#include <Windows.h>
#include <windows.h>
#endif
#ifdef __unix__