msxml3: Use BOOL type where appropriate.

oldstable
Frédéric Delanoy 2013-10-01 00:06:49 +02:00 committed by Alexandre Julliard
parent c91f39055e
commit 30aec559ac
1 changed files with 1 additions and 1 deletions

View File

@ -343,7 +343,7 @@ static inline saxlocator *impl_from_ISAXAttributes( ISAXAttributes *iface )
return CONTAINING_RECORD(iface, saxlocator, ISAXAttributes_iface);
}
static inline int saxreader_has_handler(const saxlocator *locator, enum saxhandler_type type)
static inline BOOL saxreader_has_handler(const saxlocator *locator, enum saxhandler_type type)
{
struct saxanyhandler_iface *iface = &locator->saxreader->saxhandlers[type].u.anyhandler;
return (locator->vbInterface && iface->vbhandler) || (!locator->vbInterface && iface->handler);