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

mapi32: Void functions should not return a value.

parent a0b2dbd1
...@@ -665,7 +665,7 @@ VOID WINAPI FreePadrlist(LPADRLIST lpAddrs) ...@@ -665,7 +665,7 @@ VOID WINAPI FreePadrlist(LPADRLIST lpAddrs)
TRACE("(%p)\n", lpAddrs); TRACE("(%p)\n", lpAddrs);
/* Structures are binary compatible; use the same implementation */ /* Structures are binary compatible; use the same implementation */
return FreeProws((LPSRowSet)lpAddrs); FreeProws((LPSRowSet)lpAddrs);
} }
/************************************************************************* /*************************************************************************
......
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