From e102425ebe8c6a1af87da3301524c00aba7629ca Mon Sep 17 00:00:00 2001 From: Joerg Hoppe Date: Thu, 5 Sep 2019 10:25:32 +0200 Subject: [PATCH] 32/64 problem, no timeouts > 4.2 secs were possible. --- 10.01_base/2_src/arm/utils.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/10.01_base/2_src/arm/utils.hpp b/10.01_base/2_src/arm/utils.hpp index fc08390..8d480a6 100644 --- a/10.01_base/2_src/arm/utils.hpp +++ b/10.01_base/2_src/arm/utils.hpp @@ -37,8 +37,8 @@ #include "logger.hpp" -#define MILLION 1000000L -#define BILLION (1000L * MILLION) +#define MILLION 1000000LL +#define BILLION (1000LL * MILLION) #define BIT(n) (1 << (n))