diff options
author | Markus Behm <markus@ipbc.io> | 2019-01-31 04:56:24 +0000 |
---|---|---|
committer | italocoin <info@italocoin.com> | 2019-02-09 15:24:34 -0500 |
commit | c0e9e8058155d0baf2396227b615e6b7cce8c09c (patch) | |
tree | 7608f0867c1544e6bca8cc0533fbc1aa9f009bd7 /contrib | |
parent | Merge pull request #4988 (diff) | |
download | monero-c0e9e8058155d0baf2396227b615e6b7cce8c09c.tar.xz |
Fixed missing return value in once_a_time class on windows
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/epee/include/math_helper.h | 1 |
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); |