Francois Gouget : msvcp140/tests: Make chore_callback() static.
Module: wine Branch: master Commit: 39314912556f7f68c6a173d3a010a91eb6ec1729 URL: http://source.winehq.org/git/wine.git/?a=commit;h=39314912556f7f68c6a173d3a0... Author: Francois Gouget <fgouget(a)free.fr> Date: Sat Apr 1 14:36:42 2017 +0200 msvcp140/tests: Make chore_callback() static. Signed-off-by: Francois Gouget <fgouget(a)free.fr> Signed-off-by: Piotr Caban <piotr(a)codeweavers.com> Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- dlls/msvcp140/tests/msvcp140.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/msvcp140/tests/msvcp140.c b/dlls/msvcp140/tests/msvcp140.c index 6d1a5f8..1419669 100644 --- a/dlls/msvcp140/tests/msvcp140.c +++ b/dlls/msvcp140/tests/msvcp140.c @@ -410,7 +410,7 @@ static void test__TaskEventLogger(void) ok(logger.started, "logger.started = FALSE\n"); } -void __cdecl chore_callback(void *arg) +static void __cdecl chore_callback(void *arg) { HANDLE event = arg; SetEvent(event);
participants (1)
-
Alexandre Julliard