Skip to content

Commit 0ee32c1

Browse files
bpo-30745: Fix compiler warnings introduced in bpo-30730. (#2376)
1 parent cab4692 commit 0ee32c1

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Modules/_winapi.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -844,8 +844,7 @@ _winapi_CreateProcess_impl(PyObject *module, Py_UNICODE *application_name,
844844
PROCESS_INFORMATION pi;
845845
STARTUPINFOW si;
846846
PyObject* environment;
847-
const wchar_t *wenvironment;
848-
Py_ssize_t wenvironment_size;
847+
wchar_t *wenvironment;
849848

850849
ZeroMemory(&si, sizeof(si));
851850
si.cb = sizeof(si);

0 commit comments

Comments
 (0)