diff options
author | jbj <devnull@localhost> | 2003-12-30 15:12:50 +0000 |
---|---|---|
committer | jbj <devnull@localhost> | 2003-12-30 15:12:50 +0000 |
commit | a3bf9b96f92fb7184d30d0ffedd6c37bbe57b6c4 (patch) | |
tree | c211a2f318e9f9b25759b5075c6fdf0de3f347e6 /python/rpmts-py.c | |
parent | 60a6f22facd168a8e428d39ede7ad730296bed4c (diff) | |
download | librpm-tizen-a3bf9b96f92fb7184d30d0ffedd6c37bbe57b6c4.tar.gz librpm-tizen-a3bf9b96f92fb7184d30d0ffedd6c37bbe57b6c4.tar.bz2 librpm-tizen-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/rpmts-py.c')
-rw-r--r-- | python/rpmts-py.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/rpmts-py.c b/python/rpmts-py.c index f7c381aad..4132700f7 100644 --- a/python/rpmts-py.c +++ b/python/rpmts-py.c @@ -1553,7 +1553,7 @@ PyTypeObject rpmts_Type = { (initproc) rpmts_init, /* tp_init */ (allocfunc) rpmts_alloc, /* tp_alloc */ (newfunc) rpmts_new, /* tp_new */ - (destructor) rpmts_free, /* tp_free */ + (freefunc) rpmts_free, /* tp_free */ 0, /* tp_is_gc */ #endif }; |