xmllite/writer: Fix Release() trace.

Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Nikolay Sivov 2017-03-03 15:53:03 +03:00 committed by Alexandre Julliard
parent 58f289b58f
commit 5b78cc992c
1 changed files with 1 additions and 1 deletions

View File

@ -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;