Fix return types

svn path=/trunk/; revision=27956
This commit is contained in:
Thomas Bluemel 2007-07-28 17:55:58 +00:00
parent c697530b17
commit c9a7f7f8f2
2 changed files with 4 additions and 4 deletions

View file

@ -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)

View file

@ -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)