Francois Gouget : msvcr120/tests: Make test_lconv*() static.
Module: wine Branch: master Commit: 1788674bdb92c5d099a8287cbff36f9d7ba2c266 URL: http://source.winehq.org/git/wine.git/?a=commit;h=1788674bdb92c5d099a8287cbf... Author: Francois Gouget <fgouget(a)free.fr> Date: Fri Dec 5 12:20:54 2014 +0100 msvcr120/tests: Make test_lconv*() static. --- dlls/msvcr120/tests/msvcr120.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/msvcr120/tests/msvcr120.c b/dlls/msvcr120/tests/msvcr120.c index bed1002..c0a582f 100644 --- a/dlls/msvcr120/tests/msvcr120.c +++ b/dlls/msvcr120/tests/msvcr120.c @@ -79,7 +79,7 @@ static BOOL init(void) return TRUE; } -void test_lconv_helper(const char *locstr) +static void test_lconv_helper(const char *locstr) { struct MSVCRT_lconv *lconv; char mbs[256]; @@ -133,7 +133,7 @@ void test_lconv_helper(const char *locstr) ok(strcmp(mbs, lconv->negative_sign) == 0, "%s: negative_sign\n", locstr); } -void test_lconv(void) +static void test_lconv(void) { int i; const char *locstrs[] =
participants (1)
-
Alexandre Julliard