aboutsummaryrefslogtreecommitdiffstats
path: root/sub-process.c
diff options
context:
space:
mode:
Diffstat (limited to 'sub-process.c')
-rw-r--r--sub-process.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sub-process.c b/sub-process.c
index 3f4af93555..9847dad6fc 100644
--- a/sub-process.c
+++ b/sub-process.c
@@ -20,7 +20,7 @@ struct subprocess_entry *subprocess_find_entry(struct hashmap *hashmap, const ch
{
struct subprocess_entry key;
- hashmap_entry_init(&key, strhash(cmd));
+ hashmap_entry_init(&key.ent, strhash(cmd));
key.cmd = cmd;
return hashmap_get(hashmap, &key, NULL);
}
@@ -96,7 +96,7 @@ int subprocess_start(struct hashmap *hashmap, struct subprocess_entry *entry, co
return err;
}
- hashmap_entry_init(entry, strhash(cmd));
+ hashmap_entry_init(&entry->ent, strhash(cmd));
err = startfn(entry);
if (err) {
=1'>Git 2.36.5v2.36.5Johannes Schindelin3-2/+9 2023-02-06Git 2.35.7v2.35.7Johannes Schindelin3-2/+9 2023-02-06Git 2.34.7v2.34.7Johannes Schindelin3-2/+9 2023-02-06http: support CURLOPT_PROTOCOLS_STRJeff King2-13/+54 2023-02-06http: prefer CURLOPT_SEEKFUNCTION to CURLOPT_IOCTLFUNCTIONJeff King5-30/+26 2023-02-06http-push: prefer CURLOPT_UPLOAD to CURLOPT_PUTJeff King1-1/+1 2023-02-06Git 2.33.7v2.33.7Johannes Schindelin3-2/+9 2023-02-06Git 2.32.6v2.32.6Johannes Schindelin3-2/+8 2023-02-06Git 2.31.7v2.31.7Johannes Schindelin3-2/+8 2023-02-06Git 2.30.8v2.30.8Junio C Hamano3-2/+54 2023-02-03apply: fix writing behind newly created symbolic linksPatrick Steinhardt2-0/+108 2023-01-24dir-iterator: prevent top-level symlinks without FOLLOW_SYMLINKSTaylor Blau4-5/+56 2023-01-24clone: delay picking a transport until after get_repo_path()Taylor Blau2-8/+15