Module: wine Branch: master Commit: e9e8fbd0effc93d30c5d90a9b3c6e95e26f93805 URL: http://source.winehq.org/git/wine.git/?a=commit;h=e9e8fbd0effc93d30c5d90a9b3...
Author: Francois Gouget fgouget@free.fr Date: Fri Dec 12 10:21:38 2008 +0100
ntdll/tests: Make rtlraiseexception_vectored_handler() static.
---
dlls/ntdll/tests/exception.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/ntdll/tests/exception.c b/dlls/ntdll/tests/exception.c index 1cb687d..b0cb554 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;