summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Misc/NEWS.d/next/Build/2017-07-05-16-54-59.bpo-30854.sPADRI.rst2
-rw-r--r--Python/ceval.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/Misc/NEWS.d/next/Build/2017-07-05-16-54-59.bpo-30854.sPADRI.rst b/Misc/NEWS.d/next/Build/2017-07-05-16-54-59.bpo-30854.sPADRI.rst
new file mode 100644
index 0000000..f75aea4
--- /dev/null
+++ b/Misc/NEWS.d/next/Build/2017-07-05-16-54-59.bpo-30854.sPADRI.rst
@@ -0,0 +1,2 @@
+Fix compile error when compiling --without-threads.
+Patch by Masayuki Yamamoto.
diff --git a/Python/ceval.c b/Python/ceval.c
index bf9103d..770dfcb 100644
--- a/Python/ceval.c
+++ b/Python/ceval.c
@@ -621,7 +621,7 @@ Py_MakePendingCalls(void)
arg = pendingcalls[i].arg;
pendingfirst = (i + 1) % NPENDINGCALLS;
if (func(arg) < 0) {
- goto error:
+ goto error;
}
}
busy = 0;