Skip to content

Commit 0b7a544

Browse files
committed
Fix macro
1 parent 3e64d74 commit 0b7a544

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Include/internal/pycore_stackref.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -553,7 +553,7 @@ PyStackRef_MakeHeapSafe(_PyStackRef ref)
553553
#ifdef _WIN32
554554
#define PyStackRef_CLOSE(REF) \
555555
do { \
556-
if (PyStackRef_IsUncountedMortal(REF)) Py_DECREF_MORTAL(BITS_TO_PTR(ref)); \
556+
if (PyStackRef_IsUncountedMortal(REF)) Py_DECREF_MORTAL(BITS_TO_PTR(REF)); \
557557
} while (0)
558558
#else
559559
static inline void

0 commit comments

Comments
 (0)