diff options
Diffstat (limited to 'shell')
-rw-r--r-- | shell/source/win32/shlxthandler/util/iso8601_converter.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/source/win32/shlxthandler/util/iso8601_converter.cxx b/shell/source/win32/shlxthandler/util/iso8601_converter.cxx index bf5a23d4da90..7521aa57b0e6 100644 --- a/shell/source/win32/shlxthandler/util/iso8601_converter.cxx +++ b/shell/source/win32/shlxthandler/util/iso8601_converter.cxx @@ -139,7 +139,7 @@ std::wstring iso8601_duration_to_local_duration(const std::wstring& iso8601durat if (days.length() > 0) { - int h = ((_wtoi(days.c_str()) * 24) + _wtoi(hours.c_str())); + int h = (_wtoi(days.c_str()) * 24) + _wtoi(hours.c_str()); wchar_t buff[10]; _itow(h, buff, 10); hours = buff; |