diff options
Diffstat (limited to 'zen/format_unit.cpp')
-rw-r--r-- | zen/format_unit.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/zen/format_unit.cpp b/zen/format_unit.cpp index cb92f1e4..3dfe805b 100644 --- a/zen/format_unit.cpp +++ b/zen/format_unit.cpp @@ -403,8 +403,8 @@ Opt<double> zen::utcToMtpVariantTime(std::int64_t utcTime) //returns empty on er return NoValue(); double localVarTime = 0; - if (!SystemTimeToVariantTime(&systemTimeLocal, //_In_ LPSYSTEMTIME lpSystemTime, - &localVarTime)) //_Out_ DOUBLE *pvtime + if (!::SystemTimeToVariantTime(&systemTimeLocal, //_In_ LPSYSTEMTIME lpSystemTime, + &localVarTime)) //_Out_ DOUBLE *pvtime return NoValue(); return localVarTime; |