Commit 0c311630 authored by Masayuki Yamamoto's avatar Masayuki Yamamoto Committed by Victor Stinner

bpo-30854: Fix compile error when --without-threads (#2581)

* bpo-30854: Fix compile error when --without-threads

* bpo-30854: fix news
parent aaa917ff
Fix compile error when compiling --without-threads.
Patch by Masayuki Yamamoto.
......@@ -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;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment