aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkus Behm <markus@ipbc.io>2019-01-31 04:56:24 +0000
committeritalocoin <info@italocoin.com>2019-02-09 15:24:34 -0500
commitc0e9e8058155d0baf2396227b615e6b7cce8c09c (patch)
tree7608f0867c1544e6bca8cc0533fbc1aa9f009bd7
parentMerge pull request #4988 (diff)
downloadmonero-c0e9e8058155d0baf2396227b615e6b7cce8c09c.tar.xz
Fixed missing return value in once_a_time class on windows
-rw-r--r--contrib/epee/include/math_helper.h1
1 files changed, 1 insertions, 0 deletions
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);