diff options
author | Ævar Arnfjörð Bjarmason <avarab@gmail.com> | 2022-03-31 03:45:50 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2022-04-01 19:16:03 +0200 |
commit | 551f5022019803cceb0fa3943f696fae32f093f9 (patch) | |
tree | 61715a77fa8d7a477a204c51d5cf13f0ef4bb88d /run-command.h | |
parent | The 17th batch (diff) | |
download | git-551f5022019803cceb0fa3943f696fae32f093f9.tar.xz git-551f5022019803cceb0fa3943f696fae32f093f9.zip |
run-command.h: remove always unused "clean_on_exit_handler_cbdata"
Remove a "struct child_process" member added in
ac2fbaa674c (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>
Diffstat (limited to 'run-command.h')
-rw-r--r-- | run-command.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/run-command.h b/run-command.h index 07bed6c31b..5bd0c933e8 100644 --- a/run-command.h +++ b/run-command.h @@ -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 { \ |