From c9a7f7f8f24b8231da8091b65e76062957dad7ff Mon Sep 17 00:00:00 2001 From: Thomas Bluemel Date: Sat, 28 Jul 2007 17:55:58 +0000 Subject: [PATCH] Fix return types svn path=/trunk/; revision=27956 --- reactos/lib/3rdparty/mingw/crt1.c | 4 ++-- reactos/lib/3rdparty/mingw/wcrt1.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/reactos/lib/3rdparty/mingw/crt1.c b/reactos/lib/3rdparty/mingw/crt1.c index 65f248dd978..706f6f5ba90 100644 --- a/reactos/lib/3rdparty/mingw/crt1.c +++ b/reactos/lib/3rdparty/mingw/crt1.c @@ -98,11 +98,11 @@ _mingw32_init_fmode (void) /* This function will be called when a trap occurs. Thanks to Jacob Navia for his contribution. */ -static CALLBACK long +static LONG CALLBACK _gnu_exception_handler (EXCEPTION_POINTERS * exception_data) { void (*old_handler) (int); - long action = EXCEPTION_CONTINUE_SEARCH; + LONG action = EXCEPTION_CONTINUE_SEARCH; int reset_fpu = 0; switch (exception_data->ExceptionRecord->ExceptionCode) diff --git a/reactos/lib/3rdparty/mingw/wcrt1.c b/reactos/lib/3rdparty/mingw/wcrt1.c index 8312587bd7c..a9a71db69c4 100644 --- a/reactos/lib/3rdparty/mingw/wcrt1.c +++ b/reactos/lib/3rdparty/mingw/wcrt1.c @@ -99,11 +99,11 @@ _mingw32_init_fmode (void) /* This function will be called when a trap occurs. Thanks to Jacob Navia for his contribution. */ -static CALLBACK long +static LONG CALLBACK _gnu_exception_handler (EXCEPTION_POINTERS * exception_data) { void (*old_handler) (int); - long action = EXCEPTION_CONTINUE_SEARCH; + LONG action = EXCEPTION_CONTINUE_SEARCH; int reset_fpu = 0; switch (exception_data->ExceptionRecord->ExceptionCode)