diff options
| author | Riccardo Spagni <ric@spagni.net> | 2019-03-04 21:25:44 +0200 |
|---|---|---|
| committer | Riccardo Spagni <ric@spagni.net> | 2019-03-04 21:25:44 +0200 |
| commit | 4a390d43f8f7bdd73b7c219a9234ad4177f34604 (patch) | |
| tree | 15664f217909843d3aff2eed9b77e4637093e536 | |
| parent | a6adbdc0b0f90f122e5b58ca9bb7421c7b3989a0 (diff) | |
| parent | c0e9e8058155d0baf2396227b615e6b7cce8c09c (diff) | |
| download | monzero-core-4a390d43f8f7bdd73b7c219a9234ad4177f34604.tar.gz monzero-core-4a390d43f8f7bdd73b7c219a9234ad4177f34604.tar.xz monzero-core-4a390d43f8f7bdd73b7c219a9234ad4177f34604.zip | |
Merge pull request #5113
c0e9e805 Fixed missing return value in once_a_time class on windows (Markus Behm)
| -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); |
