Commit e27fe2d7 authored by Andrew Talbot's avatar Andrew Talbot Committed by Alexandre Julliard

inetcomm: Void functions should not return a value.

parent 1f53b854
...@@ -2786,7 +2786,7 @@ static void WINAPI MimeAlloc_Free( ...@@ -2786,7 +2786,7 @@ static void WINAPI MimeAlloc_Free(
IMimeAllocator* iface, IMimeAllocator* iface,
LPVOID pv) LPVOID pv)
{ {
return CoTaskMemFree(pv); CoTaskMemFree(pv);
} }
static ULONG WINAPI MimeAlloc_GetSize( static ULONG WINAPI MimeAlloc_GetSize(
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment