diff options
| author | Junio C Hamano <gitster@pobox.com> | 2026-02-13 13:39:25 -0800 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2026-02-13 13:39:25 -0800 |
| commit | 528820243334c55e015047477e720a14bc9cf25f (patch) | |
| tree | 773eaf04a82524688f5fb95c3c7d0453720d192b /builtin/diff-tree.c | |
| parent | 70cc3bca87abdfbc941e98d1c0d3199f758f0990 (diff) | |
| parent | 9f18d089c51fba2776fe1fece877a359c47417f7 (diff) | |
| download | git-528820243334c55e015047477e720a14bc9cf25f.tar.xz | |
Merge branch 'ps/commit-list-functions-renamed'
Rename three functions around the commit_list data structure.
* ps/commit-list-functions-renamed:
commit: rename `free_commit_list()` to conform to coding guidelines
commit: rename `reverse_commit_list()` to conform to coding guidelines
commit: rename `copy_commit_list()` to conform to coding guidelines
Diffstat (limited to 'builtin/diff-tree.c')
| -rw-r--r-- | builtin/diff-tree.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/diff-tree.c b/builtin/diff-tree.c index 740d9a791c..8b8f8b54e4 100644 --- a/builtin/diff-tree.c +++ b/builtin/diff-tree.c @@ -33,7 +33,7 @@ static int stdin_diff_commit(struct commit *commit, const char *p) struct commit *parent = lookup_commit(the_repository, &oid); if (!pptr) { /* Free the real parent list */ - free_commit_list(commit->parents); + commit_list_free(commit->parents); commit->parents = NULL; pptr = &(commit->parents); } |
