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>
oldstable
Nikolay Sivov 2015-10-15 12:36:42 +03:00 committed by Alexandre Julliard
parent 7be37c9874
commit feb607ecf6
1 changed files with 1 additions and 1 deletions

View File

@ -230,7 +230,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)