summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorRoss Lagerwall <rosslagerwall@gmail.com>2011-11-04 05:15:35 (GMT)
committerRoss Lagerwall <rosslagerwall@gmail.com>2011-11-04 05:15:35 (GMT)
commitab1078b987720c99a7d96b1ce915bc15c8749d64 (patch)
tree38377abebb50ae917bdcc9001094343bbab17b46 /Modules
parent6777e6f9b1d2756aa59c57b554395e5fc0a9f540 (diff)
parentdcfde5aac99cd1ff7e43b75103feba44a453055a (diff)
downloadcpython-ab1078b987720c99a7d96b1ce915bc15c8749d64.zip
cpython-ab1078b987720c99a7d96b1ce915bc15c8749d64.tar.gz
cpython-ab1078b987720c99a7d96b1ce915bc15c8749d64.tar.bz2
(Merge 3.2) Issue #13339.
Diffstat (limited to 'Modules')
-rw-r--r--Modules/posixmodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c
index f4476b7..f7baad4 100644
--- a/Modules/posixmodule.c
+++ b/Modules/posixmodule.c
@@ -4509,7 +4509,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;