1
0
mirror of https://github.com/veracrypt/VeraCrypt.git synced 2025-11-11 11:08:02 -06:00

Windows: Fix compilation error on ARM64 caused by definition of UINT64_MAX

This commit is contained in:
Mounir IDRASSI
2021-07-13 20:20:10 +02:00
parent 62d3c9eacd
commit d3489f4771

View File

@@ -53,7 +53,7 @@
#ifdef TC_WINDOWS_DRIVER
#define UINT64_MAX 0xffffffffffffffffU
#define UINT64_MAX 0xffffffffffffffffui64
#else
#include <stdint.h>
#endif