[REACTOS] Stop using non-conforming swprintf / vswprintf

Use the underscored versions instead.
This commit is contained in:
Timo Kreuzer
2024-05-18 18:08:12 +03:00
parent 1dc2e6de72
commit 1cf31524d5
183 changed files with 964 additions and 943 deletions

View File

@@ -66,7 +66,7 @@ CEnumTuningSpaces::QueryInterface(
WCHAR Buffer[MAX_PATH];
LPOLESTR lpstr;
StringFromCLSID(refiid, &lpstr);
swprintf(Buffer, L"CEnumTuningSpaces::QueryInterface: NoInterface for %s\n", lpstr);
_swprintf(Buffer, L"CEnumTuningSpaces::QueryInterface: NoInterface for %s\n", lpstr);
OutputDebugStringW(Buffer);
CoTaskMemFree(lpstr);
@@ -123,7 +123,7 @@ CEnumTuningSpaces_fnConstructor(
WCHAR Buffer[MAX_PATH];
LPOLESTR lpstr;
StringFromCLSID(riid, &lpstr);
swprintf(Buffer, L"CEnumTuningSpaces_fnConstructor riid %s pUnknown %p\n", lpstr, pUnknown);
_swprintf(Buffer, L"CEnumTuningSpaces_fnConstructor riid %s pUnknown %p\n", lpstr, pUnknown);
OutputDebugStringW(Buffer);
#endif