dnsapi: Void functions should not return a value.

This commit is contained in:
Andrew Talbot 2011-08-27 18:47:39 +01:00 committed by Alexandre Julliard
parent 568d9ccde8
commit 60e7523353
1 changed files with 1 additions and 1 deletions

View File

@ -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 );
}
/******************************************************************************