mirror of
https://github.com/python/cpython.git
synced 2025-08-31 14:07:50 +00:00
bpo-30854: Fix compile error when --without-threads (#2581)
* bpo-30854: Fix compile error when --without-threads * bpo-30854: fix news
This commit is contained in:
parent
aaa917ff38
commit
0c31163093
2 changed files with 3 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue