summaryrefslogtreecommitdiff
path: root/tests/index
diff options
context:
space:
mode:
authorEdward Thomson <ethomson@edwardthomson.com>2019-06-23 18:13:29 +0100
committerEdward Thomson <ethomson@edwardthomson.com>2019-11-25 13:18:29 +1100
commit6460e8abcfda7692af9bd267bddf6e11a78f8130 (patch)
treec1b53835ff0e9a29c332f98ba6952df3640cebce /tests/index
parent05237ee559486ae4416f3d12e4a422bd9183f7ea (diff)
downloadlibgit2-6460e8abcfda7692af9bd267bddf6e11a78f8130.tar.gz
internal: use off64_t instead of git_off_tethomson/off_t
Prefer `off64_t` internally.
Diffstat (limited to 'tests/index')
-rw-r--r--tests/index/tests.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/index/tests.c b/tests/index/tests.c
index 2d2744df1..1164cba0e 100644
--- a/tests/index/tests.c
+++ b/tests/index/tests.c
@@ -13,7 +13,7 @@ static const size_t index_entry_count_2 = 1437;
struct test_entry {
size_t index;
char path[128];
- git_off_t file_size;
+ off64_t file_size;
git_time_t mtime;
};