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

index 42883368396251a5da1901fd7da7ac31c0b4cbc1..90445305eb4e68edaf7b7c5e5c7c807afd1db73d 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;