| 91 | } |
| 92 | |
| 93 | static inline struct commit_name *find_commit_name(const struct object_id *peeled) |
| 94 | { |
| 95 | return hashmap_get_entry_from_hash(&names, oidhash(peeled), peeled, |
| 96 | struct commit_name, entry); |
| 97 | } |
| 98 | |
| 99 | static int replace_name(struct commit_name *e, |
| 100 | int prio, |
no test coverage detected