diff options
author | Benjamin Peterson <benjamin@python.org> | 2014-01-10 15:22:40 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2014-01-10 15:22:40 (GMT) |
commit | 463753831c1c50a079d04db210bf120dc0a5411c (patch) | |
tree | 9e61d3fbe377d669e696146ca8ea1f6deae4825d | |
parent | cce440fab84dc4a3beec755894ac2daa57e173ec (diff) | |
download | cpython-463753831c1c50a079d04db210bf120dc0a5411c.zip cpython-463753831c1c50a079d04db210bf120dc0a5411c.tar.gz cpython-463753831c1c50a079d04db210bf120dc0a5411c.tar.bz2 |
fix build when SCHED_SPORADIC is defined (closes #20217)
-rw-r--r-- | Misc/NEWS | 2 | ||||
-rw-r--r-- | Modules/posixmodule.c | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -43,6 +43,8 @@ Core and Builtins Library ------- +- Issue #20217: Fix build in SCHED_SPORADIC is defined. + - Issue #13107: argparse and optparse no longer raises an exception when output a help on environment with too small COLUMNS. Based on patch by Elazar Gershuni. diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index c00ca20..905b1de 100644 --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -11863,7 +11863,7 @@ all_ins(PyObject *d) if (ins(d, "SCHED_FIFO", (long)SCHED_FIFO)) return -1; if (ins(d, "SCHED_RR", (long)SCHED_RR)) return -1; #ifdef SCHED_SPORADIC - if (ins(d, "SCHED_SPORADIC", (long)SCHED_SPORADIC) return -1; + if (ins(d, "SCHED_SPORADIC", (long)SCHED_SPORADIC)) return -1; #endif #ifdef SCHED_BATCH if (ins(d, "SCHED_BATCH", (long)SCHED_BATCH)) return -1; |