summaryrefslogtreecommitdiff
path: root/lib/rpmds.c
diff options
context:
space:
mode:
authorPanu Matilainen <pmatilai@redhat.com>2007-12-19 12:05:56 +0200
committerPanu Matilainen <pmatilai@redhat.com>2007-12-19 12:05:56 +0200
commitaddac6a86be1a6c7a668f97c9d7a0d85277f6779 (patch)
treee98781d978fe0fac926f44c1609ba5cfb2bf11b6 /lib/rpmds.c
parent44c90ce3f0c5f4686338b4b746b9bece8510d757 (diff)
downloadrpm-addac6a86be1a6c7a668f97c9d7a0d85277f6779.tar.gz
rpm-addac6a86be1a6c7a668f97c9d7a0d85277f6779.tar.bz2
rpm-addac6a86be1a6c7a668f97c9d7a0d85277f6779.zip
Add rpm_data_t (and _constdata_t) for header data, use everywhere
- consistent, easy to grep for and change... - bogus consts removed where spotted
Diffstat (limited to 'lib/rpmds.c')
-rw-r--r--lib/rpmds.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/rpmds.c b/lib/rpmds.c
index 6337b2154..79720e618 100644
--- a/lib/rpmds.c
+++ b/lib/rpmds.c
@@ -159,7 +159,7 @@ rpmds rpmdsNew(Header h, rpm_tag_t tagN, int flags)
} else
goto exit;
- if (hge(h, tagN, &Nt, (void **) &N, &Count)
+ if (hge(h, tagN, &Nt, (rpm_data_t *) &N, &Count)
&& N != NULL && Count > 0)
{
int xx;
@@ -175,12 +175,12 @@ rpmds rpmdsNew(Header h, rpm_tag_t tagN, int flags)
ds->Count = Count;
ds->nopromote = _rpmds_nopromote;
- xx = hge(h, tagEVR, &ds->EVRt, (void **) &ds->EVR, NULL);
- xx = hge(h, tagF, &ds->Ft, (void **) &ds->Flags, NULL);
+ xx = hge(h, tagEVR, &ds->EVRt, (rpm_data_t *) &ds->EVR, NULL);
+ xx = hge(h, tagF, &ds->Ft, (rpm_data_t *) &ds->Flags, NULL);
if (!scareMem && ds->Flags != NULL)
ds->Flags = memcpy(xmalloc(ds->Count * sizeof(*ds->Flags)),
ds->Flags, ds->Count * sizeof(*ds->Flags));
- xx = hge(h, tagBT, &BTt, (void **) &BTp, NULL);
+ xx = hge(h, tagBT, &BTt, (rpm_data_t *) &BTp, NULL);
ds->BT = (xx && BTp != NULL && BTt == RPM_INT32_TYPE ? *BTp : 0);
ds->Color = xcalloc(Count, sizeof(*ds->Color));
ds->Refs = xcalloc(Count, sizeof(*ds->Refs));
@@ -271,7 +271,7 @@ rpmds rpmdsThis(Header h, rpm_tag_t tagN, int32_t Flags)
xx = headerNVR(h, &n, &v, &r);
ep = NULL;
- xx = hge(h, RPMTAG_EPOCH, NULL, (void **)&ep, NULL);
+ xx = hge(h, RPMTAG_EPOCH, NULL, (rpm_data_t *)&ep, NULL);
t = xmalloc(sizeof(*N) + strlen(n) + 1);
N = (const char **) t;
@@ -964,7 +964,7 @@ int rpmdsNVRMatchesDep(const Header h, const rpmds req, int nopromote)
t = alloca(21 + strlen(v) + 1 + strlen(r) + 1);
pkgEVR = t;
*t = '\0';
- if (hge(h, RPMTAG_EPOCH, NULL, (void **) &epoch, NULL)) {
+ if (hge(h, RPMTAG_EPOCH, NULL, (rpm_data_t *) &epoch, NULL)) {
sprintf(t, "%d:", *epoch);
while (*t != '\0')
t++;