diff options
author | ngie-eign <1574099+ngie-eign@users.noreply.github.com> | 2018-02-14 19:54:28 (GMT) |
---|---|---|
committer | Mariatta <Mariatta@users.noreply.github.com> | 2018-02-14 19:54:28 (GMT) |
commit | 7745ec4e356ac1f4eaf43b155f4482c20a907d48 (patch) | |
tree | 9653e2cedc88379f8c8a3ac568f55433e0916d41 /Modules | |
parent | 5746510b7aef423fa4afc92b2abb919307b1dbb9 (diff) | |
download | cpython-7745ec4e356ac1f4eaf43b155f4482c20a907d48.zip cpython-7745ec4e356ac1f4eaf43b155f4482c20a907d48.tar.gz cpython-7745ec4e356ac1f4eaf43b155f4482c20a907d48.tar.bz2 |
Update comment in posixmodule.c (GH-5681)
A closing parentheses was missing.
Signed-off-by: Ngie Cooper <yaneurabeya@gmail.com>
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 72fda6a..d242df0 100644 --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -6102,7 +6102,7 @@ error: #ifdef HAVE_STROPTS_H #include <stropts.h> #endif -#endif /* defined(HAVE_OPENPTY) || defined(HAVE_FORKPTY) || defined(HAVE_DEV_PTMX */ +#endif /* defined(HAVE_OPENPTY) || defined(HAVE_FORKPTY) || defined(HAVE_DEV_PTMX) */ #if defined(HAVE_OPENPTY) || defined(HAVE__GETPTY) || defined(HAVE_DEV_PTMX) |