Commit 60e75233 authored by Andrew Talbot's avatar Andrew Talbot Committed by Alexandre Julliard

dnsapi: Void functions should not return a value.

parent 568d9ccd
......@@ -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 );
}
/******************************************************************************
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment