From e29e24bfb8bdcd2dd6ea20dfc1390bc15f5bdfb5 Mon Sep 17 00:00:00 2001 From: xiphon Date: Thu, 21 Feb 2019 19:12:40 +0000 Subject: [PATCH] epee: fix missing return in once_a_time::get_time() --- 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 e22e8ee6e06..35b6499725f 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);