bpo-45666: Use %S for MSVC and %s elsewhere for swprintf in _testembed.c (GH-29341)

Co-authored-by: Ken Jin <28750310+Fidget-Spinner@users.noreply.github.com>
This commit is contained in:
Nikita Sobolev 2021-11-01 15:11:34 +03:00 committed by GitHub
parent e73283a20f
commit 401d25e92f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1733,7 +1733,13 @@ static int check_use_frozen_modules(const char *rawval)
if (rawval == NULL) {
wcscpy(optval, L"frozen_modules");
}
else if (swprintf(optval, 100, L"frozen_modules=%S", rawval) < 0) {
else if (swprintf(optval, 100,
#if defined(_MSC_VER)
L"frozen_modules=%S",
#else
L"frozen_modules=%s",
#endif
rawval) < 0) {
error("rawval is too long");
return -1;
}