X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=lib%2Fpython%2Ftag.c;h=8ab17ca0adafa14203830d3247d4645db9ab3618;hb=2eeb45c3b0d4bff224b63f94edcef38853663755;hp=23cf8f9b3133fb8460eec3a751b9f26b00820b31;hpb=b4d2af74c98317254799a2e1642dce508afc9345;p=swftools.git 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); }