inetcomm: Void functions should not return a value.

This commit is contained in:
Andrew Talbot 2008-03-29 19:10:31 +00:00 committed by Alexandre Julliard
parent 1f53b85445
commit e27fe2d76a
1 changed files with 1 additions and 1 deletions

View File

@ -2786,7 +2786,7 @@ static void WINAPI MimeAlloc_Free(
IMimeAllocator* iface,
LPVOID pv)
{
return CoTaskMemFree(pv);
CoTaskMemFree(pv);
}
static ULONG WINAPI MimeAlloc_GetSize(