summaryrefslogtreecommitdiff
path: root/cache.h
diff options
context:
space:
mode:
authorNguyễn Thái Ngọc Duy <pclouds@gmail.com>2016-07-13 15:43:59 (GMT)
committerJunio C Hamano <gitster@pobox.com>2016-07-13 16:14:20 (GMT)
commit166df26f2821ea23b7c269a32fd63be43a2a0bb9 (patch)
tree3058361b91790c6e33afddcfe9c472f3d8a5b287 /cache.h
parent211c61c6cf56699fc7b520a0206d23f5e4a7261b (diff)
downloadgit-166df26f2821ea23b7c269a32fd63be43a2a0bb9.zip
git-166df26f2821ea23b7c269a32fd63be43a2a0bb9.tar.gz
git-166df26f2821ea23b7c269a32fd63be43a2a0bb9.tar.bz2
sha1_file.c: use type off_t* for object_info->disk_sizep
This field, filled by sha1_object_info() contains the on-disk size of an object, which could go over 4GB limit of unsigned long on 32-bit systems. Use off_t for it instead and update all callers. Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'cache.h')
-rw-r--r--cache.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/cache.h b/cache.h
index 4ff196c..ea64b51 100644
--- a/cache.h
+++ b/cache.h
@@ -1502,7 +1502,7 @@ struct object_info {
/* Request */
enum object_type *typep;
unsigned long *sizep;
- unsigned long *disk_sizep;
+ off_t *disk_sizep;
unsigned char *delta_base_sha1;
struct strbuf *typename;