ntdll: Void functions should not return a value.

This commit is contained in:
Andrew Talbot 2007-04-11 21:30:30 +01:00 committed by Alexandre Julliard
parent 402f4e9c74
commit a7aa7cb8b5
1 changed files with 1 additions and 1 deletions

View File

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