Skip to content

Commit a2ea417

Browse files
authored
pythonGH-131296: fix clang-cl warnings in sysmodule.c (python#131304)
1 parent 749e24b commit a2ea417

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Python/sysmodule.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1614,7 +1614,7 @@ sys_getrecursionlimit_impl(PyObject *module)
16141614

16151615
#ifdef MS_WINDOWS
16161616

1617-
static PyTypeObject WindowsVersionType = {0, 0, 0, 0, 0, 0};
1617+
static PyTypeObject WindowsVersionType = { 0 };
16181618

16191619
static PyStructSequence_Field windows_version_fields[] = {
16201620
{"major", "Major version number"},

0 commit comments

Comments
 (0)