summaryrefslogtreecommitdiff
path: root/python/rpmfts-py.c
diff options
context:
space:
mode:
authorjbj <devnull@localhost>2003-12-30 15:12:50 +0000
committerjbj <devnull@localhost>2003-12-30 15:12:50 +0000
commita3bf9b96f92fb7184d30d0ffedd6c37bbe57b6c4 (patch)
treec211a2f318e9f9b25759b5075c6fdf0de3f347e6 /python/rpmfts-py.c
parent60a6f22facd168a8e428d39ede7ad730296bed4c (diff)
downloadrpm-a3bf9b96f92fb7184d30d0ffedd6c37bbe57b6c4.tar.gz
rpm-a3bf9b96f92fb7184d30d0ffedd6c37bbe57b6c4.tar.bz2
rpm-a3bf9b96f92fb7184d30d0ffedd6c37bbe57b6c4.zip
- use -fPIC -DPIC on all platforms, not just mandatory (#112713).
CVS patchset: 7051 CVS date: 2003/12/30 15:12:50
Diffstat (limited to 'python/rpmfts-py.c')
-rw-r--r--python/rpmfts-py.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/rpmfts-py.c b/python/rpmfts-py.c
index 52b16b55f..537ec3381 100644
--- a/python/rpmfts-py.c
+++ b/python/rpmfts-py.c
@@ -561,7 +561,7 @@ PyTypeObject rpmfts_Type = {
(initproc) rpmfts_init, /* tp_init */
rpmfts_alloc, /* tp_alloc */
rpmfts_new, /* tp_new */
- rpmfts_free, /* tp_free */
+ (freefunc) rpmfts_free, /* tp_free */
0, /* tp_is_gc */
};
/*@=fullinitblock@*/