diff options
Diffstat (limited to 'third_party/git/sub-process.h')
-rw-r--r-- | third_party/git/sub-process.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/third_party/git/sub-process.h b/third_party/git/sub-process.h index e85f21fa1a7c..5c182fad9853 100644 --- a/third_party/git/sub-process.h +++ b/third_party/git/sub-process.h @@ -24,7 +24,7 @@ /* Members should not be accessed directly. */ struct subprocess_entry { - struct hashmap_entry ent; + struct hashmap_entry ent; /* must be the first member! */ const char *cmd; struct child_process process; }; @@ -43,8 +43,8 @@ struct subprocess_capability { /* Function to test two subprocess hashmap entries for equality. */ int cmd2process_cmp(const void *unused_cmp_data, - const struct hashmap_entry *e, - const struct hashmap_entry *entry_or_key, + const void *e1, + const void *e2, const void *unused_keydata); /* |