=?UTF-8?Q?Fr=C3=A9d=C3=A9ric=20Delanoy=20?=: msxml3: Use BOOL type where appropriate.

Alexandre Julliard julliard at winehq.org
Tue Oct 1 14:54:26 CDT 2013


Module: wine
Branch: master
Commit: 30aec559ac76cd59746d3a04ebe620712ca004c7
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=30aec559ac76cd59746d3a04ebe620712ca004c7

Author: Frédéric Delanoy <frederic.delanoy at gmail.com>
Date:   Tue Oct  1 00:06:49 2013 +0200

msxml3: Use BOOL type where appropriate.

---

 dlls/msxml3/saxreader.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/msxml3/saxreader.c b/dlls/msxml3/saxreader.c
index 2f632ef..61534ac 100644
--- a/dlls/msxml3/saxreader.c
+++ b/dlls/msxml3/saxreader.c
@@ -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);




More information about the wine-cvs mailing list