diff options
author | Panu Matilainen <pmatilai@redhat.com> | 2007-07-12 13:03:19 +0300 |
---|---|---|
committer | Panu Matilainen <pmatilai@redhat.com> | 2007-07-12 13:03:19 +0300 |
commit | 6f993fee6506639c6f3bb94bf98750d747891b31 (patch) | |
tree | fa834f19b398397c1d9f37d93e42aaeedb10fe57 /lib/rpmte.c | |
parent | e12cf3d1cc653dfac7bb7fe3f9aa801ab0536c88 (diff) | |
download | rpm-6f993fee6506639c6f3bb94bf98750d747891b31.tar.gz rpm-6f993fee6506639c6f3bb94bf98750d747891b31.tar.bz2 rpm-6f993fee6506639c6f3bb94bf98750d747891b31.zip |
Pull in rpmfi int_32 -> uint_32 changes from rpm5.org.
TODO reminder to audit all uses of those, plenty of places where signed
doesn't make much sense, inconsistent use etc.
Diffstat (limited to 'lib/rpmte.c')
-rw-r--r-- | lib/rpmte.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/rpmte.c b/lib/rpmte.c index 78fe32f68..acf3ef11c 100644 --- a/lib/rpmte.c +++ b/lib/rpmte.c @@ -543,7 +543,7 @@ void rpmteColorDS(rpmte te, rpmTag tag) rpmds ds = rpmteDS(te, tag); char deptype = 'R'; char mydt; - const int_32 * ddict; + const uint_32 * ddict; int_32 * colors; int_32 * refs; int_32 val; |