msvcr90: void functions should not return a value.

This commit is contained in:
Andrew Talbot 2013-03-30 22:41:56 +00:00 committed by Alexandre Julliard
parent 11ebf851b2
commit c072ac1071
1 changed files with 1 additions and 1 deletions

View File

@ -104,7 +104,7 @@ void* CDECL MSVCR90_operator_new(size_t size)
*/
void CDECL MSVCR90_operator_delete(void *ptr)
{
return MSVCRT_operator_delete(ptr);
MSVCRT_operator_delete(ptr);
}
/*********************************************************************