1
0
Fork 0
mirror of https://github.com/git/git.git synced 2024-04-19 12:53:50 +02:00

run-command.h: remove always unused "clean_on_exit_handler_cbdata"

Remove a "struct child_process" member added in
ac2fbaa674 (run-command: add clean_on_exit_handler, 2016-10-16), but
which was never used.

Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Ævar Arnfjörð Bjarmason 2022-03-31 03:45:50 +02:00 committed by Junio C Hamano
parent 4b6846d9dc
commit 551f502201

View File

@ -142,7 +142,6 @@ struct child_process {
unsigned clean_on_exit:1;
unsigned wait_after_clean:1;
void (*clean_on_exit_handler)(struct child_process *process);
void *clean_on_exit_handler_cbdata;
};
#define CHILD_PROCESS_INIT { \