riched20: Remove duplicated condition.

Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com>
Signed-off-by: Huw Davies <huw@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Nikolay Sivov 2016-06-15 10:54:58 +03:00 committed by Alexandre Julliard
parent 1da27c10b8
commit 7cb3b72559
1 changed files with 1 additions and 1 deletions

View File

@ -1976,7 +1976,7 @@ static HRESULT range_Collapse(LONG bStart, LONG *start, LONG *end)
if (*end == *start) if (*end == *start)
return S_FALSE; return S_FALSE;
if (bStart == tomEnd || bStart == tomFalse) if (bStart == tomEnd)
*start = *end; *start = *end;
else else
*end = *start; *end = *start;