Andrew Talbot : msvcr90: void functions should not return a value.
Module: wine Branch: master Commit: c072ac1071722bbd6136873b4de763a9ee257c0a URL: http://source.winehq.org/git/wine.git/?a=commit;h=c072ac1071722bbd6136873b4d... Author: Andrew Talbot <andrew.talbot(a)talbotville.com> Date: Sat Mar 30 22:41:56 2013 +0000 msvcr90: void functions should not return a value. --- dlls/msvcr90/msvcr90.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dlls/msvcr90/msvcr90.c b/dlls/msvcr90/msvcr90.c index dc97160..4787867 100644 --- a/dlls/msvcr90/msvcr90.c +++ b/dlls/msvcr90/msvcr90.c @@ -104,7 +104,7 @@ void* CDECL MSVCR90_operator_new(size_t size) */ void CDECL MSVCR90_operator_delete(void *ptr) { - return MSVCRT_operator_delete(ptr); + MSVCRT_operator_delete(ptr); } /*********************************************************************
participants (1)
-
Alexandre Julliard