summaryrefslogtreecommitdiff
path: root/Tools
diff options
context:
space:
mode:
authorOlly Betts <olly@survex.com>2008-06-23 21:23:54 +0000
committerOlly Betts <olly@survex.com>2008-06-23 21:23:54 +0000
commitef2a963c89b9795ebe599d353fdb9ec2634f49fd (patch)
treea5b16d819ec2e4099e716477a9c98f48dffd8663 /Tools
parentd4e283eb8c21f79da83fd5f85772c2a860b1c5e0 (diff)
downloadswig-ef2a963c89b9795ebe599d353fdb9ec2634f49fd.tar.gz
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
Diffstat (limited to 'Tools')
-rw-r--r--Tools/WAD/Python/type.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/WAD/Python/type.c b/Tools/WAD/Python/type.c
index 5236c1c64..7d8248e0b 100644
--- a/Tools/WAD/Python/type.c
+++ b/Tools/WAD/Python/type.c
@@ -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];