diff options
author | Panu Matilainen <pmatilai@redhat.com> | 2010-10-22 13:46:14 +0300 |
---|---|---|
committer | Panu Matilainen <pmatilai@redhat.com> | 2010-10-22 13:50:05 +0300 |
commit | 7c44f5797766f07a917f710bee71dfc88c9cbc6b (patch) | |
tree | 58d70143e774f283e80db691407625917fc3df19 /build/spec.c | |
parent | 07e68a5a775598ac3c98fcc11dcf102b7b280cc4 (diff) | |
download | librpm-tizen-7c44f5797766f07a917f710bee71dfc88c9cbc6b.tar.gz librpm-tizen-7c44f5797766f07a917f710bee71dfc88c9cbc6b.tar.bz2 librpm-tizen-7c44f5797766f07a917f710bee71dfc88c9cbc6b.zip |
Brute-force s/rpmTag/rpmTagVal/ in entire librpmbuild
- Many of these cases would be true enums from preambleList & similar,
except for the list terminating sentinel. Just switch all the
remaining rpmTag's to rpmTagVals to bring our enum-whacking to
a grande finale.
Diffstat (limited to 'build/spec.c')
-rw-r--r-- | build/spec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/spec.c b/build/spec.c index d43a0f102..651faada0 100644 --- a/build/spec.c +++ b/build/spec.c @@ -317,7 +317,7 @@ Header rpmSpecSourceHeader(rpmSpec spec) return spec->sourceHeader; } -rpmds rpmSpecDS(rpmSpec spec, rpmTag tag) +rpmds rpmSpecDS(rpmSpec spec, rpmTagVal tag) { return (spec != NULL) ? rpmdsNew(spec->buildRestrictions, tag, 0) : NULL; } |