From ece6f5c3e00fc3834fe9944cb370e9b972446cda Mon Sep 17 00:00:00 2001 From: Francois Gouget Date: Sat, 5 Jul 2014 11:15:09 +0200 Subject: [PATCH] shlwapi/tests: Make test_PathIsRelative[AW]() static. --- dlls/shlwapi/tests/path.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/shlwapi/tests/path.c b/dlls/shlwapi/tests/path.c index 9fe70cde87b..1599313c901 100644 --- a/dlls/shlwapi/tests/path.c +++ b/dlls/shlwapi/tests/path.c @@ -1600,7 +1600,7 @@ static const struct { {"file:///C:/test.txt", TRUE} }; -void test_PathIsRelativeA(void) +static void test_PathIsRelativeA(void) { BOOL ret; int i, num; @@ -1619,7 +1619,7 @@ void test_PathIsRelativeA(void) } } -void test_PathIsRelativeW(void) +static void test_PathIsRelativeW(void) { BOOL ret; int i, num;