From c0e9e8058155d0baf2396227b615e6b7cce8c09c Mon Sep 17 00:00:00 2001 From: Markus Behm Date: Thu, 31 Jan 2019 04:56:24 +0000 Subject: [PATCH] Fixed missing return value in once_a_time class on windows --- contrib/epee/include/math_helper.h | 1 + 1 file changed, 1 insertion(+) diff --git a/contrib/epee/include/math_helper.h b/contrib/epee/include/math_helper.h index e22e8ee6e..35b649972 100644 --- a/contrib/epee/include/math_helper.h +++ b/contrib/epee/include/math_helper.h @@ -243,6 +243,7 @@ namespace math_helper present = present << 32; present |= fileTime.dwLowDateTime; present /= 10; // mic-sec + return present; #else struct timeval tv; gettimeofday(&tv, NULL);