From 0c3116309307ad2c7f8e2d2096612f4ab33cbb62 Mon Sep 17 00:00:00 2001 From: Masayuki Yamamoto Date: Wed, 5 Jul 2017 17:39:17 +0900 Subject: bpo-30854: Fix compile error when --without-threads (#2581) * bpo-30854: Fix compile error when --without-threads * bpo-30854: fix news --- Python/ceval.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Python/ceval.c') diff --git a/Python/ceval.c b/Python/ceval.c index 0f6978e569..59fc070f9e 100644 --- a/Python/ceval.c +++ b/Python/ceval.c @@ -548,7 +548,7 @@ Py_MakePendingCalls(void) arg = pendingcalls[i].arg; pendingfirst = (i + 1) % NPENDINGCALLS; if (func(arg) < 0) { - goto error: + goto error; } } busy = 0; -- cgit v1.2.1