summaryrefslogtreecommitdiff
path: root/python/rpmfts-py.c
diff options
context:
space:
mode:
Diffstat (limited to 'python/rpmfts-py.c')
-rw-r--r--python/rpmfts-py.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/python/rpmfts-py.c b/python/rpmfts-py.c
index ea3f4236f..bb3594395 100644
--- a/python/rpmfts-py.c
+++ b/python/rpmfts-py.c
@@ -572,9 +572,9 @@ PyTypeObject rpmfts_Type = {
0, /* tp_descr_set */
offsetof(rpmftsObject, md_dict),/* tp_dictoffset */
(initproc) rpmfts_init, /* tp_init */
- rpmfts_alloc, /* tp_alloc */
- rpmfts_new, /* tp_new */
- rpmfts_free, /* tp_free */
+ (allocfunc) rpmfts_alloc, /* tp_alloc */
+ (newfunc) rpmfts_new, /* tp_new */
+ (freefunc) rpmfts_free, /* tp_free */
0, /* tp_is_gc */
};
/*@=fullinitblock@*/