diff options
author | Andrew MacIntyre <andymac@bullseye.apana.org.au> | 2004-12-18 09:48:40 (GMT) |
---|---|---|
committer | Andrew MacIntyre <andymac@bullseye.apana.org.au> | 2004-12-18 09:48:40 (GMT) |
commit | 995d9bf1279dece2c43347fc94c861f6a798fc1f (patch) | |
tree | def4234db0643a33c4c5562c671c65e13489ef61 | |
parent | ab38612e815274519e34bd511d5acc511d5c729a (diff) | |
download | cpython-995d9bf1279dece2c43347fc94c861f6a798fc1f.zip cpython-995d9bf1279dece2c43347fc94c861f6a798fc1f.tar.gz cpython-995d9bf1279dece2c43347fc94c861f6a798fc1f.tar.bz2 |
fix unterminated comment
-rw-r--r-- | Modules/posixmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index f605cca..b577ba9 100644 --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -3295,7 +3295,7 @@ popen(const char *command, const char *mode, int pipesize, int *err) return NULL; } - /* setup the pipe + /* setup the pipe */ if ((rc = DosCreatePipe(&pipeh[0], &pipeh[1], pipesize)) != NO_ERROR) { *err = rc; return NULL; |