diff --git a/src/random.cpp b/src/random.cpp index ec8a46b328..e98b068d3c 100644 --- a/src/random.cpp +++ b/src/random.cpp @@ -9,24 +9,23 @@ #include #include #include -#include -#ifdef WIN32 -#include -#include -#endif #include #include -#include #include -#include // for Mutex -#include // for GetTimeMicros() +#include +#include +#include +#include #include #include #include #include -#ifndef WIN32 +#ifdef WIN32 +#include +#include +#else #include #endif @@ -729,7 +728,7 @@ bool Random_SanityCheck() * GetOSRand() overwrites all 32 bytes of the output given a maximum * number of tries. */ - static const ssize_t MAX_TRIES = 1024; + static constexpr int MAX_TRIES{1024}; uint8_t data[NUM_OS_RANDOM_BYTES]; bool overwritten[NUM_OS_RANDOM_BYTES] = {}; /* Tracks which bytes have been overwritten at least once */ int num_overwritten;