From: Panu Matilainen Date: Tue, 8 Sep 2009 11:10:34 +0000 (+0300) Subject: Move variable to block local scope, not needed elsewhere X-Git-Tag: tznext/4.11.0.1.tizen20130304~2789 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5a13d2ed21da68b4d9f16c1266ab1250f646c9e0;p=tools%2Flibrpm-tizen.git Move variable to block local scope, not needed elsewhere --- diff --git a/lib/header.c b/lib/header.c index 1fdff9b..74cee50 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;