[3.6] bpo-30854: Fix compile error when --without-threads (GH-2581) (… · python/cpython@e3a0ff0 (original) (raw)
Navigation Menu
- Explore
- Pricing
Provide feedback
Saved searches
Use saved searches to filter your results more quickly
Appearance settings
Commit e3a0ff0
authored and
committed
File tree
2 files changed
lines changed
2 files changed
lines changed
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
1 | +Fix compile error when compiling --without-threads. | |
2 | +Patch by Masayuki Yamamoto. |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -621,7 +621,7 @@ Py_MakePendingCalls(void) | ||
621 | 621 | arg = pendingcalls[i].arg; |
622 | 622 | pendingfirst = (i + 1) % NPENDINGCALLS; |
623 | 623 | if (func(arg) < 0) { |
624 | - goto error: | |
624 | + goto error; | |
625 | 625 | } |
626 | 626 | } |
627 | 627 | busy = 0; |