mirror of
https://github.com/python/cpython.git
synced 2025-12-23 09:19:18 +00:00
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:
parent
6431f379b8
commit
09d7083962
1 changed files with 1 additions and 1 deletions
|
|
@ -2047,7 +2047,7 @@ struct channel_info {
|
|||
int recv;
|
||||
} cur;
|
||||
} status;
|
||||
Py_ssize_t count;
|
||||
int64_t count;
|
||||
};
|
||||
|
||||
static int
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue