mirror of
https://github.com/chibicitiberiu/rainmeter-studio.git
synced 2024-02-24 04:33:31 +00:00
Switched from _snwprintf_s to _itow_s where possible.
This commit is contained in:
@ -645,7 +645,7 @@ void CMeasureNet::WriteStats(const WCHAR* iniFile, const WCHAR* statsDate)
|
||||
AppendStatsValue(data, L"Since", statsDate);
|
||||
|
||||
// Add stats count
|
||||
_snwprintf_s(buffer, _TRUNCATE, L"%i", (int)statsSize);
|
||||
_itow_s((int)statsSize, buffer, 10);
|
||||
AppendStatsValue(data, L"NetStatsCount", buffer);
|
||||
|
||||
// Add stats
|
||||
|
Reference in New Issue
Block a user