From: Chris Eibl <138194463+chris-eibl@users.noreply.github.com> Date: Thu, 20 Mar 2025 16:29:21 +0000 (+0100) Subject: GH-131296: fix clang-cl warnings in sysmodule.c (#131304) X-Git-Tag: v3.14.0a7~273 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a2ea4175786e684dd0c1751d49f869e2e4a80e30;p=thirdparty%2FPython%2Fcpython.git GH-131296: fix clang-cl warnings in sysmodule.c (#131304) --- diff --git a/Python/sysmodule.c b/Python/sysmodule.c index 664bf31e9ecd..1b2019a9f74d 100644 --- a/Python/sysmodule.c +++ b/Python/sysmodule.c @@ -1614,7 +1614,7 @@ sys_getrecursionlimit_impl(PyObject *module) #ifdef MS_WINDOWS -static PyTypeObject WindowsVersionType = {0, 0, 0, 0, 0, 0}; +static PyTypeObject WindowsVersionType = { 0 }; static PyStructSequence_Field windows_version_fields[] = { {"major", "Major version number"},