Avoid warnings.

This commit is contained in:
Gerald Pfeifer 2003-02-19 22:07:14 +00:00 committed by Alexandre Julliard
parent 88eba44645
commit fab11ed0b9
1 changed files with 4 additions and 0 deletions

View File

@ -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;
}