Skip to content

Commit 0852f81

Browse files
author
Anselm Kruis
committed
Stackless issue python#140: Fix compiler warnings
Fix warnings emitted by gcc 7.2. - stacklessmodule.c: a misleading indentation (cherry picked from commit c51072e)
1 parent 2dbdb1e commit 0852f81

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

Stackless/module/stacklessmodule.c

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -871,10 +871,9 @@ test_cframe(PyObject *self, PyObject *args, PyObject *kwds)
871871
if (!PyArg_ParseTupleAndKeywords(args, kwds, "l|l:test_cframe",
872872
argnames, &switches, &extra))
873873
return NULL;
874-
if (extra < 0 || extra > STACK_MAX_USEFUL)
875-
VALUE_ERROR(
876-
"test_cframe: words are limited by 0 and " \
877-
STACK_MAX_USESTR, NULL);
874+
if (extra < 0 || extra > STACK_MAX_USEFUL)
875+
VALUE_ERROR("test_cframe: words are limited by 0 and " \
876+
STACK_MAX_USESTR, NULL);
878877
if (extra > 0)
879878
alloca(extra*sizeof(PyObject*));
880879
for (i=0; i<switches; i++) {

0 commit comments

Comments
 (0)