diff options
author | Eric Wong <e@80x24.org> | 2019-10-06 23:30:32 +0000 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2019-10-07 10:20:10 +0900 |
commit | 26b455f21ed7e0c7b0e4e4e69b5ae48545597020 (patch) | |
tree | 0c0a69083353100d2f637322791f4499e8cb27bf /sequencer.c | |
parent | 28ee7941280828f9e528bd8c5d0f6515a57e0c44 (diff) | |
download | git-26b455f21ed7e0c7b0e4e4e69b5ae48545597020.tar.gz |
hashmap_put takes "struct hashmap_entry *"
This is less error-prone than "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 'sequencer.c')
-rw-r--r-- | sequencer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sequencer.c b/sequencer.c index ee11cda7e7..b4ef70e260 100644 --- a/sequencer.c +++ b/sequencer.c @@ -5254,7 +5254,7 @@ int todo_list_rearrange_squash(struct todo_list *todo_list) entry->i = i; hashmap_entry_init(&entry->entry, strhash(entry->subject)); - hashmap_put(&subject2item, entry); + hashmap_put(&subject2item, &entry->entry); } } |