diff options
author | Panu Matilainen <pmatilai@redhat.com> | 2010-03-24 11:04:31 +0200 |
---|---|---|
committer | Panu Matilainen <pmatilai@redhat.com> | 2010-03-24 11:04:31 +0200 |
commit | 02307471935b2b0fecc5bd210983dccc0daf93ed (patch) | |
tree | 3646bb73ca78a8a535d174e861012a635140d514 /lib/rpmte.c | |
parent | e50e3d14e5149f5c7b30c8a0208e7e8bd80ee24a (diff) | |
download | rpm-02307471935b2b0fecc5bd210983dccc0daf93ed.tar.gz rpm-02307471935b2b0fecc5bd210983dccc0daf93ed.tar.bz2 rpm-02307471935b2b0fecc5bd210983dccc0daf93ed.zip |
Remove rpmteColorDS() from the API/ABI
- this gets called on transaction element initialization anyway,
there's no reason why anybody should need to call it from outside
Diffstat (limited to 'lib/rpmte.c')
-rw-r--r-- | lib/rpmte.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/rpmte.c b/lib/rpmte.c index 0a9795571..9c755875d 100644 --- a/lib/rpmte.c +++ b/lib/rpmte.c @@ -62,6 +62,7 @@ struct rpmte_s { rpmfs fs; }; +static void rpmteColorDS(rpmte te, rpmTag tag); /* forward declaration */ void rpmteCleanDS(rpmte te) { @@ -500,7 +501,7 @@ rpmfi rpmteFI(rpmte te) return te->fi; /* XXX take fi reference here? */ } -void rpmteColorDS(rpmte te, rpmTag tag) +static void rpmteColorDS(rpmte te, rpmTag tag) { rpmfi fi = rpmteFI(te); rpmds ds = rpmteDS(te, tag); |