summaryrefslogtreecommitdiff
path: root/zen/format_unit.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'zen/format_unit.cpp')
-rw-r--r--zen/format_unit.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/zen/format_unit.cpp b/zen/format_unit.cpp
index a880552e..6a0e1668 100644
--- a/zen/format_unit.cpp
+++ b/zen/format_unit.cpp
@@ -222,7 +222,7 @@ private:
fmt.lpDecimalSep = &decimalSep[0]; //not used
fmt.lpThousandSep = &thousandSep[0];
- //convert LOCALE_SGROUPING to Grouping: http://blogs.msdn.com/b/oldnewthing/archive/2006/04/18/578251.aspx
+ //convert LOCALE_SGROUPING to Grouping: https://blogs.msdn.microsoft.com/oldnewthing/20060418-11/?p=31493/
replace(grouping, L';', L"");
if (endsWith(grouping, L'0'))
grouping.pop_back();
@@ -382,7 +382,6 @@ Opt<std::int64_t> zen::mtpVariantTimetoUtc(double localVarTime) //returns empty
return NoValue();
#endif
-
return filetimeToTimeT(utcFiletime);
}
bgstack15