Module: wine Branch: master Commit: ece6f5c3e00fc3834fe9944cb370e9b972446cda URL: http://source.winehq.org/git/wine.git/?a=commit;h=ece6f5c3e00fc3834fe9944cb3...
Author: Francois Gouget fgouget@free.fr Date: Sat Jul 5 11:15:09 2014 +0200
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 9fe70cd..1599313 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;