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
|
@ -0,0 +1,2 @@
|
|||
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;
|
||||
|
|
Loading…
Reference in New Issue