From a2ea4175786e684dd0c1751d49f869e2e4a80e30 Mon Sep 17 00:00:00 2001 From: Chris Eibl <138194463+chris-eibl@users.noreply.github.com> Date: Thu, 20 Mar 2025 17:29:21 +0100 Subject: [PATCH] GH-131296: fix clang-cl warnings in sysmodule.c (#131304) --- Python/sysmodule.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"}, -- 2.47.3