oleaut32/tests: Don't use HRESULT codes for BOOL retval (PVS-Studio).

Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Nikolay Sivov 2015-10-20 15:52:50 +03:00 committed by Alexandre Julliard
parent 4afda020ae
commit b5699c80dd
1 changed files with 1 additions and 1 deletions

View File

@ -212,7 +212,7 @@ static HRESULT WINAPI RecordInfo_GetFieldNames(IRecordInfo *iface, ULONG *pcName
static BOOL WINAPI RecordInfo_IsMatchingType(IRecordInfo *iface, IRecordInfo *info2)
{
ok(0, "unexpected call\n");
return E_NOTIMPL;
return FALSE;
}
static PVOID WINAPI RecordInfo_RecordCreate(IRecordInfo *iface)