Andrew Talbot : mapi32: Void functions should not return a value.
Module: wine Branch: master Commit: f2acf60044a261e6580a4bc8014f6e9a15642198 URL: http://source.winehq.org/git/wine.git/?a=commit;h=f2acf60044a261e6580a4bc801... Author: Andrew Talbot <Andrew.Talbot(a)talbotville.com> Date: Sun Apr 8 16:52:06 2007 +0100 mapi32: Void functions should not return a value. --- dlls/mapi32/prop.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dlls/mapi32/prop.c b/dlls/mapi32/prop.c index 3c0bd83..484e64a 100644 --- a/dlls/mapi32/prop.c +++ b/dlls/mapi32/prop.c @@ -665,7 +665,7 @@ VOID WINAPI FreePadrlist(LPADRLIST lpAddrs) TRACE("(%p)\n", lpAddrs); /* Structures are binary compatible; use the same implementation */ - return FreeProws((LPSRowSet)lpAddrs); + FreeProws((LPSRowSet)lpAddrs); } /*************************************************************************
participants (1)
-
Alexandre Julliard