diff options
author | Igor Pavlov <87184205+ip7z@users.noreply.github.com> | 2023-06-21 00:00:00 +0000 |
---|---|---|
committer | Igor Pavlov <87184205+ip7z@users.noreply.github.com> | 2023-12-17 14:59:19 +0500 |
commit | 5b39dc76f1bc82f941d5c800ab9f34407a06b53a (patch) | |
tree | fe5e17420300b715021a76328444088d32047963 /CPP/Windows/PropVariantConv.cpp | |
parent | 93be7d4abfd4233228f58ee1fbbcd76d91be66a4 (diff) | |
download | 7zip-5b39dc76f1bc82f941d5c800ab9f34407a06b53a.tar.gz 7zip-5b39dc76f1bc82f941d5c800ab9f34407a06b53a.tar.bz2 7zip-5b39dc76f1bc82f941d5c800ab9f34407a06b53a.zip |
23.0123.01
Diffstat (limited to 'CPP/Windows/PropVariantConv.cpp')
-rw-r--r-- | CPP/Windows/PropVariantConv.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/CPP/Windows/PropVariantConv.cpp b/CPP/Windows/PropVariantConv.cpp index 3c9bbd1..5fb96a7 100644 --- a/CPP/Windows/PropVariantConv.cpp +++ b/CPP/Windows/PropVariantConv.cpp | |||
@@ -36,17 +36,17 @@ bool ConvertUtcFileTimeToString2(const FILETIME &utc, unsigned ns100, char *s, i | |||
36 | s[0] = (char)('0' + val / 10); | 36 | s[0] = (char)('0' + val / 10); |
37 | s += 4; | 37 | s += 4; |
38 | } | 38 | } |
39 | UINT_TO_STR_2('-', st.wMonth); | 39 | UINT_TO_STR_2('-', st.wMonth) |
40 | UINT_TO_STR_2('-', st.wDay); | 40 | UINT_TO_STR_2('-', st.wDay) |
41 | 41 | ||
42 | if (level > kTimestampPrintLevel_DAY) | 42 | if (level > kTimestampPrintLevel_DAY) |
43 | { | 43 | { |
44 | UINT_TO_STR_2(' ', st.wHour); | 44 | UINT_TO_STR_2(' ', st.wHour) |
45 | UINT_TO_STR_2(':', st.wMinute); | 45 | UINT_TO_STR_2(':', st.wMinute) |
46 | 46 | ||
47 | if (level >= kTimestampPrintLevel_SEC) | 47 | if (level >= kTimestampPrintLevel_SEC) |
48 | { | 48 | { |
49 | UINT_TO_STR_2(':', st.wSecond); | 49 | UINT_TO_STR_2(':', st.wSecond) |
50 | 50 | ||
51 | if (level > kTimestampPrintLevel_SEC) | 51 | if (level > kTimestampPrintLevel_SEC) |
52 | { | 52 | { |