summaryrefslogtreecommitdiff
path: root/rpmbuild.c
diff options
context:
space:
mode:
authorPanu Matilainen <pmatilai@redhat.com>2010-09-01 17:29:27 +0300
committerPanu Matilainen <pmatilai@redhat.com>2010-09-01 17:29:27 +0300
commit2c4976a5286a9e0692106965156492eeacbe0799 (patch)
tree7391403e7449c2238820a6809bc0b585753953e0 /rpmbuild.c
parentcf802b677e78f94718484da102cbf007982cb856 (diff)
downloadrpm-2c4976a5286a9e0692106965156492eeacbe0799.tar.gz
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 'rpmbuild.c')
-rw-r--r--rpmbuild.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/rpmbuild.c b/rpmbuild.c
index a03b50f35..61ade840d 100644
--- a/rpmbuild.c
+++ b/rpmbuild.c
@@ -301,7 +301,7 @@ static int buildForTarget(rpmts ts, const char * arg, BTA_t ba)
exit:
free(specFile);
- freeSpec(spec);
+ rpmSpecFree(spec);
free(buildRootURL);
return rc;
}