Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Riesen <raa.lkml@gmail.com>2005-11-22 17:58:41 +0300
committerJunio C Hamano <junkio@cox.net>2005-11-22 23:38:23 +0300
commit2b6e34c1a3c5d787f478c32a359cfe50cb8114b8 (patch)
tree0f960a738966df74ea1140604a4c0c38b8e79615 /pack-redundant.c
parent60435f68bb1ff319f9a718c91c0efff7c495dcc4 (diff)
remove unused variable
It is just assigned, nothing more. Signed-off-by: Alex Riesen <ariesen@harmanbecker.com> Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'pack-redundant.c')
-rw-r--r--pack-redundant.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/pack-redundant.c b/pack-redundant.c
index 3b91838c45..59375f1b97 100644
--- a/pack-redundant.c
+++ b/pack-redundant.c
@@ -493,12 +493,10 @@ static void load_all_objects(void)
{
struct pack_list *pl = local_packs;
struct llist_item *hint, *l;
- int i;
llist_init(&all_objects);
while (pl) {
- i = 0;
hint = NULL;
l = pl->all_objects->front;
while (l) {