Skip to content

Commit a605240

Browse files
vstinnerpicnixz
authored andcommitted
pythongh-126433: Change channel_info.count to int64_t (python#126447)
Fix compiler warnings on 32-bit Windows: change channel_info.count type from Py_ssize_t to int64_t in _interpchannelsmodule.c.
1 parent 8c6dc67 commit a605240

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Modules/_interpchannelsmodule.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2047,7 +2047,7 @@ struct channel_info {
20472047
int recv;
20482048
} cur;
20492049
} status;
2050-
Py_ssize_t count;
2050+
int64_t count;
20512051
};
20522052

20532053
static int

0 commit comments

Comments
 (0)