riched20: SUCCEEDED() is already a BOOL (PVS-Studio).

This commit is contained in:
Michael Stefaniuc 2014-10-30 23:28:44 +01:00 committed by Alexandre Julliard
parent 50a877d69f
commit 7f295effbd
1 changed files with 1 additions and 1 deletions

View File

@ -2118,7 +2118,7 @@ static BOOL ME_Copy(ME_TextEditor *editor, const ME_Cursor *start, int nChars)
hr = OleSetClipboard(dataObj);
IDataObject_Release(dataObj);
}
return SUCCEEDED(hr) != 0;
return SUCCEEDED(hr);
}
/* helper to send a msg filter notification */