From f23a465132a22860684ac66052cf9a954a18e27d Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Sun, 6 Oct 2019 23:30:36 +0000 Subject: hashmap_get{,_from_hash} return "struct hashmap_entry *" Update callers to use hashmap_get_entry, hashmap_get_entry_from_hash or container_of as appropriate. This is another step towards eliminating the requirement of hashmap_entry being the first field in a struct. Signed-off-by: Eric Wong Reviewed-by: Derrick Stolee Signed-off-by: Junio C Hamano --- sub-process.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'sub-process.c') diff --git a/sub-process.c b/sub-process.c index 99fccef592..f2fcc16c3e 100644 --- a/sub-process.c +++ b/sub-process.c @@ -22,7 +22,8 @@ struct subprocess_entry *subprocess_find_entry(struct hashmap *hashmap, const ch hashmap_entry_init(&key.ent, strhash(cmd)); key.cmd = cmd; - return hashmap_get(hashmap, &key.ent, NULL); + return hashmap_get_entry(hashmap, &key, NULL, + struct subprocess_entry, ent); } int subprocess_read_status(int fd, struct strbuf *status) -- cgit v1.2.3