Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update PC/msvcrtmodule.c
  • Loading branch information
kumaraditya303 authored Apr 18, 2023
commit 9ff5c3f3f4c22b81f4ff323f76607840eb70e971
2 changes: 1 addition & 1 deletion PC/msvcrtmodule.c
Original file line number Diff line number Diff line change
Expand Up @@ -651,7 +651,7 @@ exec_module(PyObject* m)
if (version == NULL) {
return -1;
}
int st = PyModule_AddObjectRef(m, "CRT_ASSEMBLY_VERSION", version);
st = PyModule_AddObjectRef(m, "CRT_ASSEMBLY_VERSION", version);
Py_DECREF(version);
if (st < 0) {
return -1;
Expand Down