From 724d4b1fad2a213044937f9b658065a35ad7d9c6 Mon Sep 17 00:00:00 2001 From: Lei Zhang Date: Tue, 25 Mar 2008 13:59:46 -0700 Subject: [PATCH] msxml3: Fix compiles for systems without libxml2. --- dlls/msxml3/saxreader.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/msxml3/saxreader.c b/dlls/msxml3/saxreader.c index fa4074f20c9..d3bbbd974e9 100644 --- a/dlls/msxml3/saxreader.c +++ b/dlls/msxml3/saxreader.c @@ -38,12 +38,12 @@ #include "msxml_private.h" -#include - WINE_DEFAULT_DEBUG_CHANNEL(msxml); #ifdef HAVE_LIBXML2 +#include + typedef struct _saxreader { const struct IVBSAXXMLReaderVtbl *lpVtbl;