From: kramm Date: Tue, 30 Mar 2004 14:19:52 +0000 (+0000) Subject: fixed '+'/'-' markers in logging X-Git-Tag: stable_core_1~29 X-Git-Url: http://git.asbjorn.biz/?p=swftools.git;a=commitdiff_plain;h=2eeb45c3b0d4bff224b63f94edcef38853663755 fixed '+'/'-' markers in logging --- diff --git a/lib/python/tag.c b/lib/python/tag.c index 23cf8f9..8ab17ca 100644 --- a/lib/python/tag.c +++ b/lib/python/tag.c @@ -24,7 +24,7 @@ typedef struct { static void tag_dealloc(PyObject * self) { TagObject*tag = (TagObject*)self; - mylog(" %08x(%d) tag_dealoc\n", (int)self, self->ob_refcnt); + mylog("-%08x(%d) tag_dealoc\n", (int)self, self->ob_refcnt); if(tag->placeobject) { swf_PlaceObjectFree(tag->placeobject); tag->placeobject = 0; @@ -368,7 +368,7 @@ TAG* tag_getTAG(PyObject*self, TAG*prevTag, PyObject*tagmap) PyObject* tag_getDependencies(PyObject*self) { - mylog("+%08x(%d) tag_getDependencies\n", (int)self, self->ob_refcnt); + mylog(" %08x(%d) tag_getDependencies\n", (int)self, self->ob_refcnt); TagObject*tag = (TagObject*)self; return tagmap_getObjectList(tag->tagmap); }