Module: wine Branch: master Commit: 3fe447f58ec9e0545e2b72196168ad40fe57507c URL: http://source.winehq.org/git/wine.git/?a=commit;h=3fe447f58ec9e0545e2b721961...
Author: Andrew Talbot andrew.talbot@talbotville.com Date: Sat Aug 6 12:51:17 2011 +0100
ole2.dll16: void functions should not return a value.
---
dlls/ole2.dll16/ole2.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/ole2.dll16/ole2.c b/dlls/ole2.dll16/ole2.c index 275e9ff..25fb141 100644 --- a/dlls/ole2.dll16/ole2.c +++ b/dlls/ole2.dll16/ole2.c @@ -81,7 +81,7 @@ HRESULT WINAPI OleInitialize16(LPVOID reserved) */ void WINAPI OleUninitialize16(void) { - return OleUninitialize(); + OleUninitialize(); }
/***********************************************************************