From c858e583cdb4c4cecd77d93895891a4028a2b48d Mon Sep 17 00:00:00 2001 From: Andrew Nguyen Date: Wed, 15 Sep 2010 11:16:30 -0500 Subject: [PATCH] msxml3: Correct the prototype of DOMDocument_create when compiling without libxml2. --- dlls/msxml3/domdoc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/msxml3/domdoc.c b/dlls/msxml3/domdoc.c index 8aa53323d02..f086e801cd2 100644 --- a/dlls/msxml3/domdoc.c +++ b/dlls/msxml3/domdoc.c @@ -2521,7 +2521,7 @@ IUnknown* create_domdoc( xmlNodePtr document ) #else -HRESULT DOMDocument_create(IUnknown *pUnkOuter, void **ppObj) +HRESULT DOMDocument_create(const GUID *clsid, IUnknown *pUnkOuter, void **ppObj) { MESSAGE("This program tried to use a DOMDocument object, but\n" "libxml2 support was not present at compile time.\n");