summaryrefslogtreecommitdiff
path: root/include/git2/sys
diff options
context:
space:
mode:
authorEdward Thomson <ethomson@edwardthomson.com>2015-05-13 12:11:55 -0400
committerEdward Thomson <ethomson@edwardthomson.com>2015-05-13 12:11:55 -0400
commita6f2ceaf48ae7bb5ca125129adc9017c67979abf (patch)
treec244642408368fcfd7b6c57c1864c9da84d8acaa /include/git2/sys
parent3e529e9d2dd2ae90d43612b9906f16c812101033 (diff)
parent77b339f7b6c7e167ecaf9374eb6876b498d8cb83 (diff)
downloadlibgit2-a6f2ceaf48ae7bb5ca125129adc9017c67979abf.tar.gz
Merge pull request #3118 from libgit2/cmn/stream-size
odb: make the writestream's size a git_off_t
Diffstat (limited to 'include/git2/sys')
-rw-r--r--include/git2/sys/odb_backend.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/git2/sys/odb_backend.h b/include/git2/sys/odb_backend.h
index 1fc3c3159..0a51c6dba 100644
--- a/include/git2/sys/odb_backend.h
+++ b/include/git2/sys/odb_backend.h
@@ -53,7 +53,7 @@ struct git_odb_backend {
git_odb_backend *, const git_oid *, const void *, size_t, git_otype);
int (* writestream)(
- git_odb_stream **, git_odb_backend *, size_t, git_otype);
+ git_odb_stream **, git_odb_backend *, git_off_t, git_otype);
int (* readstream)(
git_odb_stream **, git_odb_backend *, const git_oid *);