From 44598d335e415267b247ba911b481830ea81f6bf Mon Sep 17 00:00:00 2001 From: Francois Gouget Date: Thu, 23 Aug 2018 16:43:10 +0200 Subject: [PATCH] dbghelp/tests: Make stack_walk_thread() static. Signed-off-by: Francois Gouget Signed-off-by: Alexandre Julliard --- 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 1292b667032..214adb7b16b 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);