From: Andrew MacIntyre Date: Sat, 18 Dec 2004 09:46:18 +0000 (+0000) Subject: fix unterminated comment X-Git-Tag: v2.3.5c1~66 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3497a04a6c6966696fd01a7f8fb3a76a81ed6b34;p=thirdparty%2FPython%2Fcpython.git fix unterminated comment --- diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index 428833683962..90445305eb4e 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;