mapi32: Void functions should not return a value

Andrew Talbot Andrew.Talbot at talbotville.com
Sun Apr 8 10:52:06 CDT 2007


Changelog:
    mapi32: Void functions should not return a value.

diff -urN a/dlls/mapi32/prop.c b/dlls/mapi32/prop.c
--- a/dlls/mapi32/prop.c	2007-03-12 13:30:32.000000000 +0000
+++ b/dlls/mapi32/prop.c	2007-04-08 16:47:09.000000000 +0100
@@ -665,7 +665,7 @@
     TRACE("(%p)\n", lpAddrs);
 
     /* Structures are binary compatible; use the same implementation */
-    return FreeProws((LPSRowSet)lpAddrs);
+    FreeProws((LPSRowSet)lpAddrs);
 }
 
 /*************************************************************************



More information about the wine-patches mailing list