dnsapi: Void functions should not return a value.
This commit is contained in:
parent
568d9ccde8
commit
60e7523353
|
@ -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 );
|
||||
}
|
||||
|
||||
/******************************************************************************
|
||||
|
|
Loading…
Reference in New Issue