diff options
author | Andrew MacIntyre <andymac@bullseye.apana.org.au> | 2004-12-18 09:51:05 (GMT) |
---|---|---|
committer | Andrew MacIntyre <andymac@bullseye.apana.org.au> | 2004-12-18 09:51:05 (GMT) |
commit | a3be25847756c1cabdda2e4b21cc2ed1967e69fd (patch) | |
tree | 1853133c0f6648f7fda3fdaa5f829925e84bdd0d /Modules/posixmodule.c | |
parent | bf72b7163018924e42a272b4e70601f394e840e6 (diff) | |
download | cpython-a3be25847756c1cabdda2e4b21cc2ed1967e69fd.zip cpython-a3be25847756c1cabdda2e4b21cc2ed1967e69fd.tar.gz cpython-a3be25847756c1cabdda2e4b21cc2ed1967e69fd.tar.bz2 |
fix unterminated comment
Diffstat (limited to 'Modules/posixmodule.c')
-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; |