Nikolay Sivov : xmllite/writer: Fix Release() trace.
Module: wine Branch: master Commit: 5b78cc992cd183a5ad8b2e50384529a3c1da59ad URL: http://source.winehq.org/git/wine.git/?a=commit;h=5b78cc992cd183a5ad8b2e5038... Author: Nikolay Sivov <nsivov(a)codeweavers.com> Date: Fri Mar 3 15:53:03 2017 +0300 xmllite/writer: Fix Release() trace. Signed-off-by: Nikolay Sivov <nsivov(a)codeweavers.com> Signed-off-by: Alexandre Julliard <julliard(a)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;
participants (1)
-
Alexandre Julliard