mirror of
https://github.com/reactos/wine.git
synced 2025-02-09 05:36:56 +00:00
Avoid warnings.
This commit is contained in:
parent
88eba44645
commit
fab11ed0b9
@ -333,6 +333,8 @@ static LONGLONG call_cdecl_function( LONGLONG_CPROC func, int nb_args, const int
|
||||
default:
|
||||
ERR( "Unsupported nb of args %d\n", nb_args );
|
||||
assert(FALSE);
|
||||
ret = 0;
|
||||
break;
|
||||
}
|
||||
return ret;
|
||||
}
|
||||
@ -382,6 +384,8 @@ static LONGLONG call_stdcall_function( LONGLONG_FARPROC func, int nb_args, const
|
||||
default:
|
||||
ERR( "Unsupported nb of args %d\n", nb_args );
|
||||
assert(FALSE);
|
||||
ret = 0;
|
||||
break;
|
||||
}
|
||||
return ret;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user