Skip to content

Commit a90b05f

Browse files
Update Include/internal/pycore_freelist.h
Co-authored-by: Mark Shannon <[email protected]>
1 parent 85453d0 commit a90b05f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Include/internal/pycore_freelist.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ _Py_freelists_GET(void)
5252
#define _Py_FREELIST_POP_MEM(NAME) \
5353
_PyFreeList_PopMem(&_Py_freelists_GET()->NAME)
5454

55-
#define _Py_FREELIST_SIZE(NAME) ((_Py_freelists_GET()->NAME).size)
55+
#define _Py_FREELIST_SIZE(NAME) (int)((_Py_freelists_GET()->NAME).size)
5656

5757
static inline int
5858
_PyFreeList_Push(struct _Py_freelist *fl, void *obj, Py_ssize_t maxsize)

0 commit comments

Comments
 (0)