Module: wine Branch: master Commit: 56ab4a20e0f245b0e5e762a5d37d398bddcdd374 URL: http://source.winehq.org/git/wine.git/?a=commit;h=56ab4a20e0f245b0e5e762a5d3...
Author: Kirill K. Smirnov lich@math.spbu.ru Date: Wed Dec 5 00:39:04 2007 +0300
winhelp: Do not confuse caller application with bogus error when we really succeeded.
---
programs/winhelp/winhelp.c | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/programs/winhelp/winhelp.c b/programs/winhelp/winhelp.c index 44e640e..0b7e2dc 100644 --- a/programs/winhelp/winhelp.c +++ b/programs/winhelp/winhelp.c @@ -445,7 +445,8 @@ static LRESULT WINHELP_HandleCommand(HWND hSrcWnd, LPARAM lParam) break; } } - return 0L; + /* Always return success for now */ + return 1; }
/******************************************************************