Skip to content

Commit ef209db

Browse files
fix build
1 parent a28f2c5 commit ef209db

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Python/ceval.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -882,7 +882,7 @@ _PyEval_EvalFrameDefault(PyThreadState *tstate, _PyInterpreterFrame *frame, int
882882
#ifdef LLTRACE
883883
{
884884
int lltrace = maybe_lltrace_resume_frame(frame, GLOBALS());
885-
FT_ATOMIC_STORE_UINT8_RELAXED(frame->lltrace, (uint8_t)lltrace);
885+
frame->lltrace = lltrace;
886886
if (lltrace < 0) {
887887
goto exit_unwind;
888888
}

Python/ceval_macros.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@
9090
#define LLTRACE_RESUME_FRAME() \
9191
do { \
9292
int lltrace = maybe_lltrace_resume_frame(frame, GLOBALS()); \
93-
frame->lltrace = lltrace;
93+
frame->lltrace = lltrace; \
9494
if (lltrace < 0) { \
9595
goto exit_unwind; \
9696
} \

0 commit comments

Comments
 (0)