From: kramm <kramm>
Date: Fri, 4 May 2007 13:20:09 +0000 (+0000)
Subject: fixed compile error
X-Git-Tag: buttons-working~682
X-Git-Url: http://git.asbjorn.it/?a=commitdiff_plain;h=8af316a3e9acb50d020455f30d72af127b1cf21d;p=swftools.git

fixed compile error
---

diff --git a/lib/python/tag.c b/lib/python/tag.c
index 6b9bdda..bae858d 100644
--- a/lib/python/tag.c
+++ b/lib/python/tag.c
@@ -199,7 +199,7 @@ static PyObject* tag_getattr(PyObject * self, char* a)
     if(!strcmp(a, "data")) {
 	if(!fillTAG(self))
 	    return 0;
-	return Py_BuildValue("s#", tag->data, tag->len);
+	return Py_BuildValue("s#", tag->internals.tag->data, tag->internals.tag->len);
     }
     if(tag->internals.getattr) {
 	PyObject* ret = tag->internals.getattr(&tag->internals, a);