From: Serhiy Storchaka Date: Thu, 15 Jun 2017 13:57:53 +0000 (+0300) Subject: [3.6] bpo-30650: Fixed a syntax error: missed right parentheses (GH-2154) (#2215) X-Git-Tag: v3.6.2rc1~21 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f75f6edb1fdbaeb12f9de368ebdeb1b7d1836433;p=python [3.6] bpo-30650: Fixed a syntax error: missed right parentheses (GH-2154) (#2215) (cherry picked from commit 0d32218) --- diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index f4bbc8931b..0a9123b61b 100644 --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -12756,7 +12756,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;