diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2017-06-15 13:57:53 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-15 13:57:53 (GMT) |
commit | f75f6edb1fdbaeb12f9de368ebdeb1b7d1836433 (patch) | |
tree | 3d0c9bd09dfaa81b898801a36d64f3cc91b91349 /Modules | |
parent | 523a243840feb4d5f444a1b128e540876afac3d2 (diff) | |
download | cpython-f75f6edb1fdbaeb12f9de368ebdeb1b7d1836433.zip cpython-f75f6edb1fdbaeb12f9de368ebdeb1b7d1836433.tar.gz cpython-f75f6edb1fdbaeb12f9de368ebdeb1b7d1836433.tar.bz2 |
[3.6] bpo-30650: Fixed a syntax error: missed right parentheses (GH-2154) (#2215)
(cherry picked from commit 0d32218)
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/posixmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index f4bbc89..0a9123b 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; |