From 5b78cc992cd183a5ad8b2e50384529a3c1da59ad Mon Sep 17 00:00:00 2001 From: Nikolay Sivov Date: Fri, 3 Mar 2017 15:53:03 +0300 Subject: [PATCH] xmllite/writer: Fix Release() trace. Signed-off-by: Nikolay Sivov Signed-off-by: Alexandre Julliard --- dlls/xmllite/writer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/xmllite/writer.c b/dlls/xmllite/writer.c index 55a53a65e70..3a0bd29afa4 100644 --- a/dlls/xmllite/writer.c +++ b/dlls/xmllite/writer.c @@ -473,7 +473,7 @@ static ULONG WINAPI xmlwriter_Release(IXmlWriter *iface) xmlwriter *This = impl_from_IXmlWriter(iface); ULONG ref = InterlockedDecrement(&This->ref); - TRACE("(%p)->>(%u)\n", This, ref); + TRACE("(%p)->(%u)\n", This, ref); if (ref == 0) { struct element *element, *element2;