xmllite: 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:59:30 +03:00 committed by Alexandre Julliard
parent 9cede2f0a6
commit dc72103a1d
1 changed files with 1 additions and 1 deletions

View File

@ -2855,7 +2855,7 @@ static HRESULT WINAPI xmlreader_GetDepth(IXmlReader* iface, UINT *depth)
static BOOL WINAPI xmlreader_IsEOF(IXmlReader* iface)
{
FIXME("(%p): stub\n", iface);
return E_NOTIMPL;
return FALSE;
}
static const struct IXmlReaderVtbl xmlreader_vtbl =