mirror of
https://git.proxmox.com/git/libgit2
synced 2026-01-06 02:29:21 +00:00
index: explicitly cast new hash size to an int
This commit is contained in:
parent
0d9a39eaf5
commit
9a634cba85
@ -1515,7 +1515,7 @@ int git_index__fill(git_index *index, const git_vector *source_entries)
|
||||
return 0;
|
||||
|
||||
git_vector_size_hint(&index->entries, source_entries->length);
|
||||
git_idxmap_resize(index->entries_map, source_entries->length * 1.3);
|
||||
git_idxmap_resize(index->entries_map, (khint_t)(source_entries->length * 1.3));
|
||||
|
||||
git_vector_foreach(source_entries, i, source_entry) {
|
||||
git_index_entry *entry = NULL;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user