Commit c7a46f5d authored by Frédéric Delanoy's avatar Frédéric Delanoy Committed by Alexandre Julliard

hhctrl.ocx: Remove misplaced semicolon after an if condition.

parent 7340dcdb
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment