From 8fc5ef0aeb8eed2d48783404adef2d0832fc28ac Mon Sep 17 00:00:00 2001 From: Petri Lehtinen Date: Wed, 19 Apr 2017 21:02:49 +0300 Subject: [PATCH] test_dump: Don't use pipe on MinGW --- test/suites/api/test_dump.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/suites/api/test_dump.c b/test/suites/api/test_dump.c index 17c495a..044fe72 100644 --- a/test/suites/api/test_dump.c +++ b/test/suites/api/test_dump.c @@ -252,7 +252,7 @@ static void dumpb() static void dumpfd() { -#ifdef HAVE_UNISTD_H +#if defined(HAVE_UNISTD_H) && !defined(__MINGW32__) int fds[2] = {-1, -1}; json_t *a, *b;