From f2acf60044a261e6580a4bc8014f6e9a15642198 Mon Sep 17 00:00:00 2001 From: Andrew Talbot Date: Sun, 8 Apr 2007 16:52:06 +0100 Subject: [PATCH] mapi32: Void functions should not return a value. --- dlls/mapi32/prop.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/mapi32/prop.c b/dlls/mapi32/prop.c index 3c0bd83a507..484e64a10d1 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); } /*************************************************************************