summaryrefslogtreecommitdiff
path: root/diffcore-delta.c
diff options
context:
space:
mode:
authorPhilip Oakley <philipoakley@iee.email>2021-12-01 00:29:01 (GMT)
committerJunio C Hamano <gitster@pobox.com>2021-12-01 22:48:10 (GMT)
commit62e8452c8c0ecdd7af5ff1e0c8cefaf153216d12 (patch)
tree061f107829779217d63cb7301b09a226fd681360 /diffcore-delta.c
parenta43abad1e3bfb20864cd3873a4a8b86f845bae1a (diff)
downloadgit-62e8452c8c0ecdd7af5ff1e0c8cefaf153216d12.zip
git-62e8452c8c0ecdd7af5ff1e0c8cefaf153216d12.tar.gz
git-62e8452c8c0ecdd7af5ff1e0c8cefaf153216d12.tar.bz2
diffcore-delta.c: LLP64 compatibility, upcast unity for left shift
Visual Studio reports C4334 "was 64-bit shift intended" warning because of size miss-match. Promote unity to the matching type to fit with its subsequent operation. Signed-off-by: Philip Oakley <philipoakley@iee.email> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'diffcore-delta.c')
-rw-r--r--diffcore-delta.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/diffcore-delta.c b/diffcore-delta.c
index 5668ace..18d8f76 100644
--- a/diffcore-delta.c
+++ b/diffcore-delta.c
@@ -133,10 +133,10 @@ static struct spanhash_top *hash_chars(struct repository *r,
i = INITIAL_HASH_SIZE;
hash = xmalloc(st_add(sizeof(*hash),
- st_mult(sizeof(struct spanhash), 1<<i)));
+ st_mult(sizeof(struct spanhash), (size_t)1 << i)));
hash->alloc_log2 = i;
hash->free = INITIAL_FREE(i);
- memset(hash->data, 0, sizeof(struct spanhash) * (1<<i));
+ memset(hash->data, 0, sizeof(struct spanhash) * ((size_t)1 << i));
n = 0;
accum1 = accum2 = 0;
@@ -159,7 +159,7 @@ static struct spanhash_top *hash_chars(struct repository *r,
n = 0;
accum1 = accum2 = 0;
}
- QSORT(hash->data, 1ul << hash->alloc_log2, spanhash_cmp);
+ QSORT(hash->data, (size_t)1ul << hash->alloc_log2, spanhash_cmp);
return hash;
}