Skip to content
This repository was archived by the owner on Feb 13, 2025. It is now read-only.

Commit 29b302b

Browse files
author
Anselm Kruis
committed
Stackless issue #242: fix line indentation
Patchcheck added to many spaces. (cherry picked from commit b983d73)
1 parent 260c73c commit 29b302b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Stackless/core/stacklesseval.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -348,11 +348,11 @@ slp_eval_frame(PyFrameObject *f)
348348
if (ts->st.cstack_base == NULL)
349349
ts->st.cstack_base = stackref - SLP_CSTACK_GOODGAP;
350350
if (stackref > ts->st.cstack_base) {
351-
PyCStackObject *initial_stub;
351+
PyCStackObject *initial_stub;
352352
retval = climb_stack_and_eval_frame(f);
353-
initial_stub = ts->st.initial_stub;
354-
/* cst might be NULL in OOM conditions */
355-
if (ts->interp != _PyRuntime.interpreters.main && initial_stub != NULL) {
353+
initial_stub = ts->st.initial_stub;
354+
/* cst might be NULL in OOM conditions */
355+
if (ts->interp != _PyRuntime.interpreters.main && initial_stub != NULL) {
356356
PyCStackObject *cst;
357357
register int found = 0;
358358
assert(initial_stub->startaddr == ts->st.cstack_base);

0 commit comments

Comments
 (0)