Module: wine Branch: master Commit: 7734de65c776a6f8f1160e60cd08c809a20364d7 URL: http://source.winehq.org/git/wine.git/?a=commit;h=7734de65c776a6f8f1160e60cd...
Author: Francois Gouget fgouget@free.fr Date: Fri Aug 7 11:54:33 2015 +0200
vcomp/tests: Make my_for_static_init() static.
---
dlls/vcomp/tests/vcomp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/vcomp/tests/vcomp.c b/dlls/vcomp/tests/vcomp.c index 26b50a7..f24c654 100644 --- a/dlls/vcomp/tests/vcomp.c +++ b/dlls/vcomp/tests/vcomp.c @@ -696,7 +696,7 @@ static void test_vcomp_for_static_simple_init(void) #define VCOMP_FOR_STATIC_BROKEN_LOOP 1 #define VCOMP_FOR_STATIC_BROKEN_NEXT 2
-DWORD CDECL my_for_static_init(int first, int last, int step, int chunksize, unsigned int *loops, +static DWORD CDECL my_for_static_init(int first, int last, int step, int chunksize, unsigned int *loops, int *begin, int *end, int *next, int *lastchunk) { unsigned int iterations, num_chunks, per_thread, remaining;