зеркало из https://github.com/microsoft/git.git
builtin/revert.c: make commit_list_append() static
There is nobody outside that calls into this helper function. Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Родитель
cf3e2486d6
Коммит
fb3198c57f
|
@ -664,8 +664,8 @@ static void read_and_refresh_cache(struct replay_opts *opts)
|
|||
* assert(commit_list_count(list) == 2);
|
||||
* return list;
|
||||
*/
|
||||
struct commit_list **commit_list_append(struct commit *commit,
|
||||
struct commit_list **next)
|
||||
static struct commit_list **commit_list_append(struct commit *commit,
|
||||
struct commit_list **next)
|
||||
{
|
||||
struct commit_list *new = xmalloc(sizeof(struct commit_list));
|
||||
new->item = commit;
|
||||
|
|
Загрузка…
Ссылка в новой задаче