From: Serhiy Storchaka Date: Thu, 15 Jun 2017 13:58:15 +0000 (+0300) Subject: [3.5] bpo-30650: Fixed a syntax error: missed right parentheses (GH-2154) (#2216) X-Git-Tag: v3.5.4rc1~74 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b39c78a73c203dcaf8f2061da81827c667440402;p=python [3.5] bpo-30650: Fixed a syntax error: missed right parentheses (GH-2154) (#2216) (cherry picked from commit 0d32218) --- diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index 00da3c0865..9dd26f51ed 100644 --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -12812,7 +12812,7 @@ all_ins(PyObject *m) if (PyModule_AddIntMacro(m, SCHED_RR)) return -1; #endif #ifdef SCHED_SPORADIC - if (PyModule_AddIntMacro(m, SCHED_SPORADIC) return -1; + if (PyModule_AddIntMacro(m, SCHED_SPORADIC)) return -1; #endif #ifdef SCHED_BATCH if (PyModule_AddIntMacro(m, SCHED_BATCH)) return -1;