diff options
author | Panu Matilainen <pmatilai@redhat.com> | 2010-09-01 17:29:27 +0300 |
---|---|---|
committer | Panu Matilainen <pmatilai@redhat.com> | 2010-09-01 17:29:27 +0300 |
commit | 2c4976a5286a9e0692106965156492eeacbe0799 (patch) | |
tree | 7391403e7449c2238820a6809bc0b585753953e0 /python | |
parent | cf802b677e78f94718484da102cbf007982cb856 (diff) | |
download | librpm-tizen-2c4976a5286a9e0692106965156492eeacbe0799.tar.gz librpm-tizen-2c4976a5286a9e0692106965156492eeacbe0799.tar.bz2 librpm-tizen-2c4976a5286a9e0692106965156492eeacbe0799.zip |
Rename freeSpec() -> rpmSpecFree() for namespacing
- librpmbuild actually now has what remotely resembles an API, after
we broke every single thing there was ;)
Diffstat (limited to 'python')
-rw-r--r-- | python/spec-py.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/spec-py.c b/python/spec-py.c index af01e1f50..1377a7863 100644 --- a/python/spec-py.c +++ b/python/spec-py.c @@ -114,7 +114,7 @@ static void spec_dealloc(specObject * s) { if (s->spec) { - s->spec=freeSpec(s->spec); + s->spec=rpmSpecFree(s->spec); } Py_TYPE(s)->tp_free((PyObject *)s); } |