From 3497a04a6c6966696fd01a7f8fb3a76a81ed6b34 Mon Sep 17 00:00:00 2001 From: Andrew MacIntyre Date: Sat, 18 Dec 2004 09:46:18 +0000 Subject: [PATCH] fix unterminated comment --- Modules/posixmodule.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.47.3