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
path: root/tree.c
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2005-12-05 08:13:57 +0300
committerJunio C Hamano <junkio@cox.net>2005-12-05 10:19:31 +0300
commit18d1e701b70014d37a2715ccce0791114587709e (patch)
treedf9fc79100d4fb6a605c1fb4841520151d3d290c /tree.c
parentf83df6d66e08f1f68b2c1c6aa2ba8b626990df5f (diff)
struct tree: remove unused field "parent"
The field is not used anymore, after the recent ls-tree rewrite. Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'tree.c')
-rw-r--r--tree.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/tree.c b/tree.c
index 043f032151..e7a7b7190c 100644
--- a/tree.c
+++ b/tree.c
@@ -200,7 +200,6 @@ int parse_tree_buffer(struct tree *item, void *buffer, unsigned long size)
}
if (obj)
n_refs++;
- entry->parent = NULL; /* needs to be filled by the user */
*list_p = entry;
list_p = &entry->next;
}