From c119a5d80bd1bb1b717cf1b23abf24ff237892ea Mon Sep 17 00:00:00 2001 From: Savannah Ostrowski Date: Tue, 29 Oct 2024 15:15:40 -0700 Subject: [PATCH] Fix whitespace --- Python/ceval_macros.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python/ceval_macros.h b/Python/ceval_macros.h index c111255016f512..6674c4ccf9f693 100644 --- a/Python/ceval_macros.h +++ b/Python/ceval_macros.h @@ -378,7 +378,7 @@ _PyFrame_SetStackPointer(frame, stack_pointer) #define GOTO_TIER_TWO(EXECUTOR) \ do { \ OPT_STAT_INC(traces_executed); \ - jit_func jitted = (EXECUTOR)->jit_code; \ + jit_func jitted = (EXECUTOR)->jit_code; \ next_instr = jitted(frame, stack_pointer, tstate); \ Py_DECREF(tstate->previous_executor); \ tstate->previous_executor = NULL; \