Skip to content

Commit e0d446e

Browse files
[3.5] bpo-30745: Fix compiler warnings introduced in bpo-30730. (GH-2376) (#2379)
(cherry picked from commit 0ee32c1)
1 parent 3e8d6f5 commit e0d446e

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)