gh-126433: Change channel_info.count to int64_t (#126447)

Fix compiler warnings on 32-bit Windows: change channel_info.count
type from Py_ssize_t to int64_t in _interpchannelsmodule.c.
This commit is contained in:
Victor Stinner 2024-11-06 11:20:17 +01:00 committed by GitHub
parent 6431f379b8
commit 09d7083962
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -2047,7 +2047,7 @@ struct channel_info {
int recv;
} cur;
} status;
Py_ssize_t count;
int64_t count;
};
static int