Module: wine Branch: master Commit: c7a46f5d3e37843c44b01ed807d4b0c2119307a7 URL: http://source.winehq.org/git/wine.git/?a=commit;h=c7a46f5d3e37843c44b01ed807...
Author: Frédéric Delanoy frederic.delanoy@gmail.com Date: Thu Jun 30 16:46:34 2011 +0200
hhctrl.ocx: Remove misplaced semicolon after an if condition.
---
dlls/hhctrl.ocx/hhctrl.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/hhctrl.ocx/hhctrl.c b/dlls/hhctrl.ocx/hhctrl.c index 33cc1f1..f93fecc 100644 --- a/dlls/hhctrl.ocx/hhctrl.c +++ b/dlls/hhctrl.ocx/hhctrl.c @@ -126,7 +126,7 @@ static BOOL resolve_filename(const WCHAR *filename, WCHAR *fullname, DWORD bufle extra = strstrW(filename, delimW); if (extra) { - if (filename != chm_file); + if (filename != chm_file) memcpy(chm_file, filename, (extra-filename)*sizeof(WCHAR)); chm_file[extra-filename] = 0; filename = chm_file;