Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorÆvar Arnfjörð Bjarmason <avarab@gmail.com>2022-03-31 04:45:50 +0300
committerJunio C Hamano <gitster@pobox.com>2022-04-01 20:16:03 +0300
commit551f5022019803cceb0fa3943f696fae32f093f9 (patch)
tree61715a77fa8d7a477a204c51d5cf13f0ef4bb88d /run-command.h
parent4b6846d9dcd391164b72bd70e8a0c0e09776afe3 (diff)
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.h1
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 { \