diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2007-03-21 10:08:25 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2007-03-21 10:21:57 -0700 |
commit | 6fda5e5180c2e7c130978361aea53b4e66f36823 (patch) | |
tree | 89df3a31883fe84ae06d1c05f29fa823614eef87 /list-objects.c | |
parent | a8c40471ab0851bf9a58f7dc76f121258e0690e2 (diff) | |
download | git-6fda5e5180c2e7c130978361aea53b4e66f36823.tar.gz |
Initialize tree descriptors with a helper function rather than by hand.
This removes slightly more lines than it adds, but the real reason for
doing this is that future optimizations will require more setup of the
tree descriptor, and so we want to do it in one place.
Also renamed the "desc.buf" field to "desc.buffer" just to trigger
compiler errors for old-style manual initializations, making sure I
didn't miss anything.
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'list-objects.c')
-rw-r--r-- | list-objects.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/list-objects.c b/list-objects.c index f1fa21c397..2ba2c958e0 100644 --- a/list-objects.c +++ b/list-objects.c @@ -49,8 +49,7 @@ static void process_tree(struct rev_info *revs, me.elem = name; me.elem_len = strlen(name); - desc.buf = tree->buffer; - desc.size = tree->size; + init_tree_desc(&desc, tree->buffer, tree->size); while (tree_entry(&desc, &entry)) { if (S_ISDIR(entry.mode)) |