diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2019-01-26 01:10:11 +0100 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2019-01-26 01:20:43 +0100 |
commit | 7b95b375a0aeb7fcba50437944d94bab074e7df4 (patch) | |
tree | 23eb0eaa3f55c0cff7f64d6ff0216e3c4e5dcfa3 | |
parent | ce0a34941a7d181be0a6640e8ed6b80bce3cf672 (diff) | |
download | VeraCrypt-7b95b375a0aeb7fcba50437944d94bab074e7df4.tar.gz VeraCrypt-7b95b375a0aeb7fcba50437944d94bab074e7df4.zip |
Windows: fix building MBR bootloader following modification of Xts.c
-rw-r--r-- | src/Common/Xts.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Common/Xts.c b/src/Common/Xts.c index 20e066cf..390eb31e 100644 --- a/src/Common/Xts.c +++ b/src/Common/Xts.c @@ -27,8 +27,10 @@ For big-endian platforms define BYTE_ORDER as BIG_ENDIAN. */ # include <memory.h> #endif +#ifndef TC_NO_COMPILER_INT64 #include "cpu.h" #include "misc.h" +#endif #include "Xts.h" |