diff options
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 | { |