summaryrefslogtreecommitdiff
path: root/src/attr_file.c
diff options
context:
space:
mode:
authorEdward Thomson <ethomson@edwardthomson.com>2019-06-23 15:43:38 +0100
committerEdward Thomson <ethomson@edwardthomson.com>2019-11-22 15:10:19 +1100
commit4334b1779f661bf9a77c68c928e970cf9d25b477 (patch)
tree1e909d5854b3c97f5ca12841af16c031014ad377 /src/attr_file.c
parentbed9fc6b59eafc9ad197a7ff7215ed6be97663ae (diff)
downloadlibgit2-4334b1779f661bf9a77c68c928e970cf9d25b477.tar.gz
blob: use `git_object_size_t` for object size
Instead of using a signed type (`off_t`) use a new `git_object_size_t` for the sizes of objects.
Diffstat (limited to 'src/attr_file.c')
-rw-r--r--src/attr_file.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/attr_file.c b/src/attr_file.c
index a1b4c7324..82da5268f 100644
--- a/src/attr_file.c
+++ b/src/attr_file.c
@@ -120,7 +120,7 @@ int git_attr_file__load(
int bom_offset;
git_bom_t bom;
git_oid id;
- git_off_t blobsize;
+ git_object_size_t blobsize;
*out = NULL;