summaryrefslogtreecommitdiff
path: root/tests/object
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/object
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/object')
-rw-r--r--tests/object/blob/filter.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/object/blob/filter.c b/tests/object/blob/filter.c
index 45dbc9263..0f0f4845f 100644
--- a/tests/object/blob/filter.c
+++ b/tests/object/blob/filter.c
@@ -19,7 +19,7 @@ static const char *g_crlf_raw[CRLF_NUM_TEST_OBJECTS] = {
"\xFE\xFF\x00T\x00h\x00i\x00s\x00!"
};
-static git_off_t g_crlf_raw_len[CRLF_NUM_TEST_OBJECTS] = {
+static off64_t g_crlf_raw_len[CRLF_NUM_TEST_OBJECTS] = {
-1, -1, -1, -1, -1, 17, -1, -1, 12
};