diff options
author | Alex Riesen <raa.lkml@gmail.com> | 2005-11-22 15:58:41 +0100 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2005-11-22 12:38:23 -0800 |
commit | 2b6e34c1a3c5d787f478c32a359cfe50cb8114b8 (patch) | |
tree | 0f960a738966df74ea1140604a4c0c38b8e79615 /pack-redundant.c | |
parent | 60435f68bb1ff319f9a718c91c0efff7c495dcc4 (diff) | |
download | git-2b6e34c1a3c5d787f478c32a359cfe50cb8114b8.tar.gz |
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.c | 2 |
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) { |