diff options
author | Chris Eibl <138194463+chris-eibl@users.noreply.github.com> | 2025-03-20 17:29:21 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-03-20 16:29:21 +0000 |
commit | a2ea4175786e684dd0c1751d49f869e2e4a80e30 (patch) | |
tree | e43e4f6223a56fede8ba34ecd44cec8f98c295be /Python/sysmodule.c | |
parent | 749e24b48fb6b267f1ad580a6363edbcbbfa3e16 (diff) | |
download | cpython-a2ea4175786e684dd0c1751d49f869e2e4a80e30.tar.gz cpython-a2ea4175786e684dd0c1751d49f869e2e4a80e30.zip |
GH-131296: fix clang-cl warnings in sysmodule.c (#131304)
Diffstat (limited to 'Python/sysmodule.c')
-rw-r--r-- | Python/sysmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/sysmodule.c b/Python/sysmodule.c index 664bf31e9ec..1b2019a9f74 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"}, |