summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew MacIntyre <andymac@bullseye.apana.org.au>2004-12-18 09:48:40 (GMT)
committerAndrew MacIntyre <andymac@bullseye.apana.org.au>2004-12-18 09:48:40 (GMT)
commit995d9bf1279dece2c43347fc94c861f6a798fc1f (patch)
treedef4234db0643a33c4c5562c671c65e13489ef61
parentab38612e815274519e34bd511d5acc511d5c729a (diff)
downloadcpython-995d9bf1279dece2c43347fc94c861f6a798fc1f.zip
cpython-995d9bf1279dece2c43347fc94c861f6a798fc1f.tar.gz
cpython-995d9bf1279dece2c43347fc94c861f6a798fc1f.tar.bz2
fix unterminated comment
-rw-r--r--Modules/posixmodule.c2
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;