diff options
author | Panu Matilainen <pmatilai@redhat.com> | 2007-07-10 15:19:04 +0300 |
---|---|---|
committer | Panu Matilainen <pmatilai@redhat.com> | 2007-07-10 15:19:04 +0300 |
commit | f91bb73993794e573ecc234106feca12739a4cea (patch) | |
tree | f329f456e327e73846e26f781378e92aa03a2676 /python/rpmfd-py.c | |
parent | 075560d864115ae7aed0c461040a1e151ae05725 (diff) | |
download | rpm-f91bb73993794e573ecc234106feca12739a4cea.tar.gz |
Fix bunch of compiler warnings from python bindings (method pointer types)
Diffstat (limited to 'python/rpmfd-py.c')
-rw-r--r-- | python/rpmfd-py.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/rpmfd-py.c b/python/rpmfd-py.c index 56814946c..1f2f6c5ef 100644 --- a/python/rpmfd-py.c +++ b/python/rpmfd-py.c @@ -323,7 +323,7 @@ PyTypeObject rpmfd_Type = { (initproc) rpmfd_init, /* tp_init */ (allocfunc) rpmfd_alloc, /* tp_alloc */ (newfunc) rpmfd_new, /* tp_new */ - rpmfd_free, /* tp_free */ + (freefunc) rpmfd_free, /* tp_free */ 0, /* tp_is_gc */ #endif }; |