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:
parent
58f289b58f
commit
5b78cc992c
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue