mirror of https://github.com/python/cpython
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
|
@ -2047,7 +2047,7 @@ struct channel_info {
|
|||
int recv;
|
||||
} cur;
|
||||
} status;
|
||||
Py_ssize_t count;
|
||||
int64_t count;
|
||||
};
|
||||
|
||||
static int
|
||||
|
|
Loading…
Reference in New Issue