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

Alexandre Julliard julliard at winehq.org
Mon Mar 31 09:15:17 CDT 2008


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

Author: Andrew Talbot <andrew.talbot at talbotville.com>
Date:   Sat Mar 29 19:10:31 2008 +0000

inetcomm: Void functions should not return a value.

---

 dlls/inetcomm/mimeole.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/inetcomm/mimeole.c b/dlls/inetcomm/mimeole.c
index 3ee7281..1e39f27 100644
--- a/dlls/inetcomm/mimeole.c
+++ b/dlls/inetcomm/mimeole.c
@@ -2786,7 +2786,7 @@ static void WINAPI MimeAlloc_Free(
         IMimeAllocator* iface,
         LPVOID pv)
 {
-    return CoTaskMemFree(pv);
+    CoTaskMemFree(pv);
 }
 
 static ULONG WINAPI MimeAlloc_GetSize(




More information about the wine-cvs mailing list