From a2a72d34726597cfed684891dc5093aaf2793b7c Mon Sep 17 00:00:00 2001 From: Frank Denis Date: Mon, 16 Feb 2015 09:01:36 +0100 Subject: [PATCH] Compare size_t values with ULL --- .../crypto_pwhash/scryptsalsa208sha256/crypto_scrypt.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libsodium/crypto_pwhash/scryptsalsa208sha256/crypto_scrypt.h b/src/libsodium/crypto_pwhash/scryptsalsa208sha256/crypto_scrypt.h index 47a30f78..2100ecc7 100644 --- a/src/libsodium/crypto_pwhash/scryptsalsa208sha256/crypto_scrypt.h +++ b/src/libsodium/crypto_pwhash/scryptsalsa208sha256/crypto_scrypt.h @@ -32,7 +32,7 @@ #include -#if SIZE_MAX > 0xffffffffUL +#if SIZE_MAX > 0xffffffffULL # define ARCH_BITS 64 #else # define ARCH_BITS 32