diff options
author | Johannes Schindelin <johannes.schindelin@gmx.de> | 2011-03-22 13:50:08 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-03-22 11:43:27 -0700 |
commit | c0aa335c95974caebcc972cd63a11e6ff73b1612 (patch) | |
tree | 95b46205d5a696acda8b2e4624bb65635964fd8e /builtin/fsck.c | |
parent | c2e86addb86689306b992065328ec52aa2479658 (diff) | |
download | git-c0aa335c95974caebcc972cd63a11e6ff73b1612.tar.gz |
Remove unused variables
Noticed by gcc 4.6.0.
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin/fsck.c')
-rw-r--r-- | builtin/fsck.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/builtin/fsck.c b/builtin/fsck.c index 795aba087f..5ae0366bc8 100644 --- a/builtin/fsck.c +++ b/builtin/fsck.c @@ -140,11 +140,10 @@ static int traverse_reachable(void) int result = 0; while (pending.nr) { struct object_array_entry *entry; - struct object *obj, *parent; + struct object *obj; entry = pending.objects + --pending.nr; obj = entry->item; - parent = (struct object *) entry->name; result |= traverse_one_object(obj); } return !!result; |