Fix bad use of Python API (untested, since I can't even compile this code on

x86-64!)


git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@10563 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Olly Betts 2008-06-23 21:23:54 +00:00
commit ef2a963c89

View file

@ -62,7 +62,7 @@ new_wadobject(WadFrame *f, int count) {
/* release a wad object */
static void
wadobject_dealloc(wadobject *self) {
PyMem_DEL(self);
PyObject_Del(self);
}
static char message[65536];