]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
fix unterminated comment
authorAndrew MacIntyre <andymac@bullseye.apana.org.au>
Sat, 18 Dec 2004 09:48:40 +0000 (09:48 +0000)
committerAndrew MacIntyre <andymac@bullseye.apana.org.au>
Sat, 18 Dec 2004 09:48:40 +0000 (09:48 +0000)
Modules/posixmodule.c

index f605cca4a3665bb6e7dbf78c78fbc3124e619c0c..b577ba947dad4c73a86989457296d3a7dbb26faf 100644 (file)
@@ -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;