File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -93,7 +93,7 @@ typedef struct _typeobject PyTypeObject;
93
93
/* The GC bit-shifts refcounts left by two, and after that shift we still
94
94
* need this to be >> 0, so leave three high zero bits (the sign bit and
95
95
* room for a shift of two.) */
96
- #define _Py_IMMORTAL_BIT (1L << (8 * sizeof(Py_ssize_t) - 4))
96
+ #define _Py_IMMORTAL_BIT (1LL << (8 * sizeof(Py_ssize_t) - 4))
97
97
98
98
#endif /* Py_IMMORTAL_OBJECTS */
99
99
Original file line number Diff line number Diff line change @@ -1988,7 +1988,7 @@ Immortalize all instances accessible through the GC roots.
1988
1988
[clinic start generated code]*/
1989
1989
1990
1990
static PyObject *
1991
- gc_immortalize_heap_impl (PyObject * Py_UNUSED ( ignored ) )
1991
+ gc_immortalize_heap_impl (PyObject * module )
1992
1992
/*[clinic end generated code: output=a7bb85fe2e27e4ae input=ca1709e4667c0623]*/
1993
1993
{
1994
1994
return _PyGC_ImmortalizeHeap ();
You can’t perform that action at this time.
0 commit comments