Skip to content

Commit b1edb96

Browse files
committed
Post merge fixup
1 parent 522c0e7 commit b1edb96

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Include/internal/pycore_stackref.h

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -460,9 +460,8 @@ static inline _PyStackRef
460460
PyStackRef_FromPyObjectSteal(PyObject *obj)
461461
{
462462
assert(obj != NULL);
463-
unsigned int tag;
464463
#if SIZEOF_VOID_P > 4
465-
tag = obj->ob_flags & Py_TAG_BITS;
464+
unsigned int tag = obj->ob_flags & Py_TAG_BITS;
466465
#else
467466
unsigned int tag = _Py_IsImmortal(obj) ? Py_TAG_IMMORTAL : 0;
468467
#endif

0 commit comments

Comments
 (0)