From: Ross Lagerwall Date: Fri, 4 Nov 2011 05:09:14 +0000 (+0200) Subject: Issue #13339: Fix compile error in posixmodule.c due to missing semicolon. X-Git-Tag: v3.2.3rc1~430 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=dcfde5aac99cd1ff7e43b75103feba44a453055a;p=thirdparty%2FPython%2Fcpython.git Issue #13339: Fix compile error in posixmodule.c due to missing semicolon. Thanks to Robert Xiao. --- diff --git a/Misc/NEWS b/Misc/NEWS index 276f6659d065..a605909c3d8d 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -66,6 +66,9 @@ Core and Builtins Library ------- +- Issue #13339: Fix compile error in posixmodule.c due to missing semicolon. + Thanks to Robert Xiao. + - Issue #10570: curses.putp() and curses.tigetstr() are now expecting a byte string, instead of a Unicode string. diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index 702fec0cdf54..a27ac7111dc0 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;