From ab9f8b53b7a73b5ea89780cc2e0feac950f61212 Mon Sep 17 00:00:00 2001 From: Yasuki Ikeuchi Date: Sat, 20 Aug 2016 10:27:09 +0900 Subject: [PATCH] Fix unused variable error --- crypto/crypto_misc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crypto/crypto_misc.c b/crypto/crypto_misc.c index bf51cbc75..dfd5e7642 100644 --- a/crypto/crypto_misc.c +++ b/crypto/crypto_misc.c @@ -53,7 +53,7 @@ static int rng_fd = -1; static HCRYPTPROV gCryptProv; #endif -#if (!defined(CONFIG_USE_DEV_URANDOM) && !defined(CONFIG_WIN32_USE_CRYPTO_LIB)) +#if (!defined(ESP8266) && !defined(CONFIG_USE_DEV_URANDOM) && !defined(CONFIG_WIN32_USE_CRYPTO_LIB)) /* change to processor registers as appropriate */ #define ENTROPY_POOL_SIZE 32 #define ENTROPY_COUNTER1 ((((uint64_t)tv.tv_sec)<<32) | tv.tv_usec)