From 1a1065578456b62e973e143aeda63a394a535935 Mon Sep 17 00:00:00 2001 From: "hyunghwan.chung" Date: Thu, 10 Oct 2019 15:09:44 +0000 Subject: [PATCH] changed the return type of close_pipes from int to void in std.c --- moo/lib/std.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/moo/lib/std.c b/moo/lib/std.c index 081155b..2439352 100644 --- a/moo/lib/std.c +++ b/moo/lib/std.c @@ -2263,7 +2263,7 @@ static int open_pipes (moo_t* moo, int p[2]) return 0; } -static int close_pipes (moo_t* moo, int p[2]) +static void close_pipes (moo_t* moo, int p[2]) { #if defined(_WIN32) _close (p[0]);