From 1f07f583cf677cf666e2999c08cc269053444f65 Mon Sep 17 00:00:00 2001 From: Francois Gouget Date: Tue, 22 Jun 2010 17:51:13 +0200 Subject: [PATCH] msvcrt/tests: Make test_dup2() static. --- dlls/msvcrt/tests/file.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/msvcrt/tests/file.c b/dlls/msvcrt/tests/file.c index 3afc149ded0..ef7b28dfc6c 100644 --- a/dlls/msvcrt/tests/file.c +++ b/dlls/msvcrt/tests/file.c @@ -1414,7 +1414,7 @@ static void test_unlink(void) rmdir("test_unlink"); } -void test_dup2(void) +static void test_dup2(void) { ok(-1 == _dup2(0, -1), "expected _dup2 to fail when second arg is negative\n" ); } -- 2.11.4.GIT