From 3c6f9e54ef18f185ef367a15f457cbd54e1dc1cf Mon Sep 17 00:00:00 2001 From: John Barboza Date: Wed, 26 Jul 2017 02:50:00 -0400 Subject: [PATCH] unix: add missing semicolon MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR-URL: https://github.com/libuv/libuv/pull/1444 Reviewed-By: Bartosz Sosnowski Reviewed-By: Colin Ihrig Reviewed-By: Saúl Ibarra Corretgé --- test/test-spawn.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test-spawn.c b/test/test-spawn.c index 12e06b73..d714e045 100644 --- a/test/test-spawn.c +++ b/test/test-spawn.c @@ -1714,7 +1714,7 @@ TEST_IMPL(spawn_inherit_streams) { TEST_IMPL(spawn_quoted_path) { #ifndef _WIN32 - RETURN_SKIP("Test for Windows") + RETURN_SKIP("Test for Windows"); #else char* quoted_path_env[2]; options.file = "not_existing";