Module: wine Branch: master Commit: 44598d335e415267b247ba911b481830ea81f6bf URL: https://source.winehq.org/git/wine.git/?a=commit;h=44598d335e415267b247ba911...
Author: Francois Gouget fgouget@free.fr Date: Thu Aug 23 16:43:10 2018 +0200
dbghelp/tests: Make stack_walk_thread() static.
Signed-off-by: Francois Gouget fgouget@free.fr Signed-off-by: Alexandre Julliard julliard@winehq.org
---
dlls/dbghelp/tests/dbghelp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/dbghelp/tests/dbghelp.c b/dlls/dbghelp/tests/dbghelp.c index 1292b66..214adb7 100644 --- a/dlls/dbghelp/tests/dbghelp.c +++ b/dlls/dbghelp/tests/dbghelp.c @@ -23,7 +23,7 @@
#if defined(__i386__) || defined(__x86_64__)
-DWORD CALLBACK stack_walk_thread(void *arg) +static DWORD CALLBACK stack_walk_thread(void *arg) { DWORD count = SuspendThread(GetCurrentThread()); ok(!count, "got %d\n", count);