diff options
Diffstat (limited to 'zen/format_unit.cpp')
-rw-r--r-- | zen/format_unit.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zen/format_unit.cpp b/zen/format_unit.cpp index 13280b68..2aa6e094 100644 --- a/zen/format_unit.cpp +++ b/zen/format_unit.cpp @@ -170,7 +170,7 @@ std::wstring zen::formatUtcToLocalTime(time_t utcTime) { auto errorMsg = [&] { return _("Error") + L" (time_t: " + numberTo<std::wstring>(utcTime) + L')'; }; - const TimeComp& loc = getLocalTime(utcTime); + const TimeComp& loc = getLocalTime(utcTime); //returns TimeComp() on error std::wstring dateString = utfTo<std::wstring>(formatTime(Zstr("%x %X"), loc)); return !dateString.empty() ? dateString : errorMsg(); |