From e9e8fbd0effc93d30c5d90a9b3c6e95e26f93805 Mon Sep 17 00:00:00 2001 From: Francois Gouget Date: Fri, 12 Dec 2008 10:21:38 +0100 Subject: [PATCH] ntdll/tests: Make rtlraiseexception_vectored_handler() static. --- dlls/ntdll/tests/exception.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/ntdll/tests/exception.c b/dlls/ntdll/tests/exception.c index 1cb687d6c3b..b0cb55418fc 100644 --- a/dlls/ntdll/tests/exception.c +++ b/dlls/ntdll/tests/exception.c @@ -199,7 +199,7 @@ static void run_exception_test(void *handler, const void* context, pNtCurrentTeb()->Tib.ExceptionList = exc_frame.frame.Prev; } -LONG CALLBACK rtlraiseexception_vectored_handler(EXCEPTION_POINTERS *ExceptionInfo) +static LONG CALLBACK rtlraiseexception_vectored_handler(EXCEPTION_POINTERS *ExceptionInfo) { PCONTEXT context = ExceptionInfo->ContextRecord; PEXCEPTION_RECORD rec = ExceptionInfo->ExceptionRecord;