mirror of
https://github.com/python/cpython.git
synced 2025-11-11 14:44:57 +00:00
fix unterminated comment
This commit is contained in:
parent
bf72b71630
commit
a3be258477
1 changed files with 1 additions and 1 deletions
|
|
@ -3295,7 +3295,7 @@ popen(const char *command, const char *mode, int pipesize, int *err)
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* setup the pipe
|
/* setup the pipe */
|
||||||
if ((rc = DosCreatePipe(&pipeh[0], &pipeh[1], pipesize)) != NO_ERROR) {
|
if ((rc = DosCreatePipe(&pipeh[0], &pipeh[1], pipesize)) != NO_ERROR) {
|
||||||
*err = rc;
|
*err = rc;
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue