From 84aba12a28511013aaaa520e841a49a55c04e91b Mon Sep 17 00:00:00 2001 From: Nikolay Sivov Date: Mon, 8 Nov 2010 00:50:38 +0300 Subject: [PATCH] msxml3: Dump set node value. --- dlls/msxml3/node.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dlls/msxml3/node.c b/dlls/msxml3/node.c index f01c00e251..221abc26b7 100644 --- a/dlls/msxml3/node.c +++ b/dlls/msxml3/node.c @@ -142,6 +142,7 @@ HRESULT node_set_content(xmlnode *This, LPCWSTR value) { xmlChar *str; + TRACE("(%p)->(%s)\n", This, debugstr_w(value)); str = xmlChar_from_wchar(value); if(!str) return E_OUTOFMEMORY; @@ -155,6 +156,7 @@ static HRESULT node_set_content_escaped(xmlnode *This, LPCWSTR value) { xmlChar *str, *escaped; + TRACE("(%p)->(%s)\n", This, debugstr_w(value)); str = xmlChar_from_wchar(value); if(!str) return E_OUTOFMEMORY;