diff options
author | Eric Wong <e@80x24.org> | 2019-10-07 01:30:31 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2019-10-07 03:20:10 +0200 |
commit | 28ee7941280828f9e528bd8c5d0f6515a57e0c44 (patch) | |
tree | 8ccc5bad88aad148e83cccfd1835752188d8640a /sub-process.c | |
parent | hashmap_get takes "const struct hashmap_entry *" (diff) | |
download | git-28ee7941280828f9e528bd8c5d0f6515a57e0c44.tar.xz git-28ee7941280828f9e528bd8c5d0f6515a57e0c44.zip |
hashmap_remove takes "const struct hashmap_entry *"
This is less error-prone than "const void *" as the compiler
now detects invalid types being passed.
Signed-off-by: Eric Wong <e@80x24.org>
Reviewed-by: Derrick Stolee <stolee@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'sub-process.c')
-rw-r--r-- | sub-process.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sub-process.c b/sub-process.c index debd86bb68..99fccef592 100644 --- a/sub-process.c +++ b/sub-process.c @@ -58,7 +58,7 @@ void subprocess_stop(struct hashmap *hashmap, struct subprocess_entry *entry) kill(entry->process.pid, SIGTERM); finish_command(&entry->process); - hashmap_remove(hashmap, entry, NULL); + hashmap_remove(hashmap, &entry->ent, NULL); } static void subprocess_exit_handler(struct child_process *process) |