mirror of
https://git.proxmox.com/git/libgit2
synced 2025-05-20 14:15:10 +00:00
MSVC: What could possibly be the size of a void*?
This commit is contained in:
parent
c6d7d877fc
commit
ad003763cc
@ -642,7 +642,8 @@ void git__insertsort_r(
|
||||
void *els, size_t nel, size_t elsize, void *swapel,
|
||||
git__sort_r_cmp cmp, void *payload)
|
||||
{
|
||||
uint8_t *base = els, *end = els + nel * elsize;
|
||||
uint8_t *base = els;
|
||||
uint8_t *end = base + nel * elsize;
|
||||
uint8_t *i, *j;
|
||||
bool freeswap = !swapel;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user