From c7a46f5d3e37843c44b01ed807d4b0c2119307a7 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Fr=C3=A9d=C3=A9ric=20Delanoy?= Date: Thu, 30 Jun 2011 16:46:34 +0200 Subject: [PATCH] hhctrl.ocx: Remove misplaced semicolon after an if condition. --- dlls/hhctrl.ocx/hhctrl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/hhctrl.ocx/hhctrl.c b/dlls/hhctrl.ocx/hhctrl.c index 33cc1f1f84..f93feccbae 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; -- 2.32.0.93.g670b81a890