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

Alexandre Julliard julliard at winehq.org
Mon Aug 29 11:28:32 CDT 2011


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

Author: Andrew Talbot <andrew.talbot at talbotville.com>
Date:   Sat Aug 27 18:47:39 2011 +0100

dnsapi: Void functions should not return a value.

---

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

diff --git a/dlls/dnsapi/record.c b/dlls/dnsapi/record.c
index e9252ef..ae31316 100644
--- a/dlls/dnsapi/record.c
+++ b/dlls/dnsapi/record.c
@@ -645,7 +645,7 @@ VOID WINAPI DnsRecordListFree( PDNS_RECORD list, DNS_FREE_TYPE type )
  */
 void WINAPI DnsFree( PVOID data, DNS_FREE_TYPE type )
 {
-    return DnsRecordListFree( data, type );
+    DnsRecordListFree( data, type );
 }
 
 /******************************************************************************




More information about the wine-cvs mailing list