Nikolay Sivov : xmllite/writer: Fix Release() trace.

Alexandre Julliard julliard at winehq.org
Fri Mar 3 14:20:35 CST 2017


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

Author: Nikolay Sivov <nsivov at codeweavers.com>
Date:   Fri Mar  3 15:53:03 2017 +0300

xmllite/writer: Fix Release() trace.

Signed-off-by: Nikolay Sivov <nsivov at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 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 55a53a6..3a0bd29 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;




More information about the wine-cvs mailing list