diff options
Diffstat (limited to 'walker.c')
-rw-r--r-- | walker.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -88,7 +88,7 @@ static int process_commit(struct walker *walker, struct commit *commit) walker_say(walker, "walk %s\n", oid_to_hex(&commit->object.oid)); - if (process(walker, &commit->tree->object)) + if (process(walker, &get_commit_tree(commit)->object)) return -1; for (parents = commit->parents; parents; parents = parents->next) { |