diff options
author | Ross Lagerwall <rosslagerwall@gmail.com> | 2011-11-04 05:09:14 (GMT) |
---|---|---|
committer | Ross Lagerwall <rosslagerwall@gmail.com> | 2011-11-04 05:09:14 (GMT) |
commit | dcfde5aac99cd1ff7e43b75103feba44a453055a (patch) | |
tree | 12dfda02e180d6cfb756b12cae27c71cb60f6cb3 /Modules/posixmodule.c | |
parent | 7ab4192e82154e6d61b635f493ed6c36231614ad (diff) | |
download | cpython-dcfde5aac99cd1ff7e43b75103feba44a453055a.zip cpython-dcfde5aac99cd1ff7e43b75103feba44a453055a.tar.gz cpython-dcfde5aac99cd1ff7e43b75103feba44a453055a.tar.bz2 |
Issue #13339: Fix compile error in posixmodule.c due to missing semicolon.
Thanks to Robert Xiao.
Diffstat (limited to 'Modules/posixmodule.c')
-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 702fec0..a27ac71 100644 --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -4001,7 +4001,7 @@ search path to find the file.\n\ static PyObject * posix_spawnvpe(PyObject *self, PyObject *args) { - PyObject *opath + PyObject *opath; char *path; PyObject *argv, *env; char **argvlist; |