From 642c22898142ab548659e89f3928b74656e877e0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Herm=C3=A8s=20B=C3=A9lusca-Ma=C3=AFto?= Date: Wed, 25 May 2016 20:49:40 +0000 Subject: [PATCH] [KERNEL32]: Indentation fix only. svn path=/trunk/; revision=71402 --- reactos/dll/win32/kernel32/client/thread.c | 32 +++++++++++----------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/reactos/dll/win32/kernel32/client/thread.c b/reactos/dll/win32/kernel32/client/thread.c index 4d47f6d6b5c..a7963e272fc 100644 --- a/reactos/dll/win32/kernel32/client/thread.c +++ b/reactos/dll/win32/kernel32/client/thread.c @@ -29,24 +29,24 @@ BasepNotifyCsrOfThread(IN HANDLE ThreadHandle, static LONG BaseThreadExceptionFilter(EXCEPTION_POINTERS * ExceptionInfo) { - LONG ExceptionDisposition = EXCEPTION_EXECUTE_HANDLER; - LPTOP_LEVEL_EXCEPTION_FILTER RealFilter; - RealFilter = RtlDecodePointer(GlobalTopLevelExceptionFilter); + LONG ExceptionDisposition = EXCEPTION_EXECUTE_HANDLER; + LPTOP_LEVEL_EXCEPTION_FILTER RealFilter; - if (RealFilter != NULL) - { - _SEH2_TRY - { - ExceptionDisposition = RealFilter(ExceptionInfo); - } - _SEH2_EXCEPT(EXCEPTION_EXECUTE_HANDLER) - { - ExceptionDisposition = UnhandledExceptionFilter(ExceptionInfo); - } - _SEH2_END; - } + RealFilter = RtlDecodePointer(GlobalTopLevelExceptionFilter); + if (RealFilter != NULL) + { + _SEH2_TRY + { + ExceptionDisposition = RealFilter(ExceptionInfo); + } + _SEH2_EXCEPT(EXCEPTION_EXECUTE_HANDLER) + { + ExceptionDisposition = UnhandledExceptionFilter(ExceptionInfo); + } + _SEH2_END; + } - return ExceptionDisposition; + return ExceptionDisposition; } __declspec(noreturn)