mirror of
https://github.com/python/cpython.git
synced 2025-07-24 11:44:31 +00:00
Issue #13339: Fix compile error in posixmodule.c due to missing semicolon.
Thanks to Robert Xiao.
This commit is contained in:
parent
7ab4192e82
commit
dcfde5aac9
2 changed files with 4 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue