Andrew Talbot : ntdll: Void functions should not return a value.

Alexandre Julliard julliard at wine.codeweavers.com
Thu Apr 12 09:59:54 CDT 2007


Module: wine
Branch: master
Commit: a7aa7cb8b5172eb0ad8c7d0657863ddbface6350
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=a7aa7cb8b5172eb0ad8c7d0657863ddbface6350

Author: Andrew Talbot <Andrew.Talbot at talbotville.com>
Date:   Wed Apr 11 21:30:30 2007 +0100

ntdll: Void functions should not return a value.

---

 dlls/ntdll/string.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/ntdll/string.c b/dlls/ntdll/string.c
index 92aa808..ae56aae 100644
--- a/dlls/ntdll/string.c
+++ b/dlls/ntdll/string.c
@@ -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 );
 }
 
 




More information about the wine-cvs mailing list