Merge branch 'mc/clean-smudge-with-llp64'
The clean/smudge conversion code path has been prepared to better work on platforms where ulong is narrower than size_t. * mc/clean-smudge-with-llp64: clean/smudge: allow clean filters to process extremely large files odb: guard against data loss checking out a huge file git-compat-util: introduce more size_t helpers odb: teach read_blob_entry to use size_t t1051: introduce a smudge filter test for extremely large files test-lib: add prerequisite for 64-bit platforms test-tool genzeros: generate large amounts of data more efficiently test-genzeros: allow more than 2G zeros in Windows
This commit is contained in:
@ -261,7 +261,7 @@ static int write_pc_item_to_fd(struct parallel_checkout_item *pc_item, int fd,
|
||||
struct stream_filter *filter;
|
||||
struct strbuf buf = STRBUF_INIT;
|
||||
char *blob;
|
||||
unsigned long size;
|
||||
size_t size;
|
||||
ssize_t wrote;
|
||||
|
||||
/* Sanity check */
|
||||
|
Reference in New Issue
Block a user