Commit a7aa7cb8 authored by Andrew Talbot's avatar Andrew Talbot Committed by Alexandre Julliard

ntdll: Void functions should not return a value.

parent 402f4e9c
......@@ -98,7 +98,7 @@ void * __cdecl NTDLL_bsearch( const void *key, const void *base, size_t nmemb,
void __cdecl NTDLL_qsort( void *base, size_t nmemb, size_t size,
int(*compar)(const void *, const void *) )
{
return qsort( base, nmemb, size, compar );
qsort( base, nmemb, size, compar );
}
......
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