]> granicus.if.org Git - python/commitdiff
Issue #13339: Fix compile error in posixmodule.c due to missing semicolon.
authorRoss Lagerwall <rosslagerwall@gmail.com>
Fri, 4 Nov 2011 05:09:14 +0000 (07:09 +0200)
committerRoss Lagerwall <rosslagerwall@gmail.com>
Fri, 4 Nov 2011 05:09:14 +0000 (07:09 +0200)
Thanks to Robert Xiao.

Misc/NEWS
Modules/posixmodule.c

index 276f6659d065bdbbcbe97c400fc705ecbf1d3acb..a605909c3d8da786039a028634b75449acb72837 100644 (file)
--- 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.
 
index 702fec0cdf54ede3d0070ac495de5b80c34a34b4..a27ac7111dc054272532bba50d004d554e58b85b 100644 (file)
@@ -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;