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
No known key found for this signature in database
GPG Key ID: 02C30AE90FAE4A6F
1 changed files with 1 additions and 1 deletions

View File

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