static void free_compiled_text(Text *text)
{
if(text->compiled) {
- Py_DECREF(text->compiled);
+ Py_DECREF(( PyObject * )text->compiled);
}
text->compiled= NULL;
}
memcpy( &txtname[namelen], ".py", 4 );
for(text = maggie->text.first; text; text = text->id.next) {
- fprintf(stderr, "%s | %s\n", txtname, text->id.name+2);
if( !strcmp( txtname, text->id.name+2 ) )
break;
}