diff options
author | George Hazan <george.hazan@gmail.com> | 2024-05-07 11:45:47 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2024-05-07 11:45:47 +0300 |
commit | 3cac3160302a2936d04c87c1f7f03fc400449778 (patch) | |
tree | 62088adc7c6e12b8e026934f1efc493a9ea8059f /plugins/HistoryLinkListPlus/src | |
parent | 2e01b6543458d9e54c99ff7d4d86c9d9e45667d3 (diff) |
TimeZone_ToStringT - obsolete macro removed
Diffstat (limited to 'plugins/HistoryLinkListPlus/src')
-rw-r--r-- | plugins/HistoryLinkListPlus/src/linklist_fct.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/HistoryLinkListPlus/src/linklist_fct.cpp b/plugins/HistoryLinkListPlus/src/linklist_fct.cpp index 2977f5fedd..7d3b6d6f7f 100644 --- a/plugins/HistoryLinkListPlus/src/linklist_fct.cpp +++ b/plugins/HistoryLinkListPlus/src/linklist_fct.cpp @@ -147,7 +147,7 @@ int ExtractURI(DBEVENTINFO *dbei, MEVENT hEvent, LISTELEMENT *listStart) wcsncpy_s(link, word, LINK_MAX);
}
- TimeZone_ToStringT(dbei->timestamp, L"d-t", dbdate, _countof(dbdate));
+ TimeZone_ToStringW(dbei->timestamp, L"d-t", dbdate, _countof(dbdate));
date_ptr = wcstok_s(dbdate, L"-", &tok_ctx);
time_ptr = wcstok_s(nullptr, L"-", &tok_ctx);
wcsncpy_s(date, date_ptr, _TRUNCATE);
|