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

This commit is contained in:
Frédéric Delanoy 2011-06-30 16:46:34 +02:00 committed by Alexandre Julliard
parent 7340dcdb6d
commit c7a46f5d3e

View file

@ -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;