summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorAndrew MacIntyre <andymac@bullseye.apana.org.au>2004-12-18 09:51:05 (GMT)
committerAndrew MacIntyre <andymac@bullseye.apana.org.au>2004-12-18 09:51:05 (GMT)
commita3be25847756c1cabdda2e4b21cc2ed1967e69fd (patch)
tree1853133c0f6648f7fda3fdaa5f829925e84bdd0d /Modules
parentbf72b7163018924e42a272b4e70601f394e840e6 (diff)
downloadcpython-a3be25847756c1cabdda2e4b21cc2ed1967e69fd.zip
cpython-a3be25847756c1cabdda2e4b21cc2ed1967e69fd.tar.gz
cpython-a3be25847756c1cabdda2e4b21cc2ed1967e69fd.tar.bz2
fix unterminated comment
Diffstat (limited to 'Modules')
-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;