Andrew Talbot : mapi32: Void functions should not return a value.

Alexandre Julliard julliard at wine.codeweavers.com
Mon Apr 9 07:36:02 CDT 2007


Module: wine
Branch: master
Commit: f2acf60044a261e6580a4bc8014f6e9a15642198
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=f2acf60044a261e6580a4bc8014f6e9a15642198

Author: Andrew Talbot <Andrew.Talbot at 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);
 }
 
 /*************************************************************************




More information about the wine-cvs mailing list