mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 10:13:56 +00:00
inetcomm: Void functions should not return a value.
This commit is contained in:
parent
1f53b85445
commit
e27fe2d76a
1 changed files with 1 additions and 1 deletions
|
@ -2786,7 +2786,7 @@ static void WINAPI MimeAlloc_Free(
|
|||
IMimeAllocator* iface,
|
||||
LPVOID pv)
|
||||
{
|
||||
return CoTaskMemFree(pv);
|
||||
CoTaskMemFree(pv);
|
||||
}
|
||||
|
||||
static ULONG WINAPI MimeAlloc_GetSize(
|
||||
|
|
Loading…
Reference in a new issue