diff options
author | Panu Matilainen <pmatilai@redhat.com> | 2009-09-08 14:10:34 +0300 |
---|---|---|
committer | Panu Matilainen <pmatilai@redhat.com> | 2009-09-09 10:57:30 +0300 |
commit | 5a13d2ed21da68b4d9f16c1266ab1250f646c9e0 (patch) | |
tree | 4ecd93b75be7318d070074086266059c30f788d8 | |
parent | f3389c8794f99685eb9bd113b48dd844a93c57cc (diff) | |
download | rpm-5a13d2ed21da68b4d9f16c1266ab1250f646c9e0.tar.gz rpm-5a13d2ed21da68b4d9f16c1266ab1250f646c9e0.tar.bz2 rpm-5a13d2ed21da68b4d9f16c1266ab1250f646c9e0.zip |
Move variable to block local scope, not needed elsewhere
-rw-r--r-- | lib/header.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/header.c b/lib/header.c index 1fdff9be5..74cee5053 100644 --- a/lib/header.c +++ b/lib/header.c @@ -245,7 +245,6 @@ unsigned headerSizeof(Header h, enum hMagic magicp) size += 2 * sizeof(int32_t); /* count of index entries */ for (i = 0, entry = h->index; i < h->indexUsed; i++, entry++) { - unsigned diff; rpmTagType type; /* Regions go in as is ... */ @@ -264,7 +263,7 @@ unsigned headerSizeof(Header h, enum hMagic magicp) /* Alignment */ type = entry->info.type; if (typeSizes[type] > 1) { - diff = typeSizes[type] - (size % typeSizes[type]); + unsigned diff = typeSizes[type] - (size % typeSizes[type]); if (diff != typeSizes[type]) { size += diff; pad += diff; |