diff options
| author | Edward Thomson <ethomson@edwardthomson.com> | 2015-05-13 12:11:55 -0400 |
|---|---|---|
| committer | Edward Thomson <ethomson@edwardthomson.com> | 2015-05-13 12:11:55 -0400 |
| commit | a6f2ceaf48ae7bb5ca125129adc9017c67979abf (patch) | |
| tree | c244642408368fcfd7b6c57c1864c9da84d8acaa /include/git2/odb.h | |
| parent | 3e529e9d2dd2ae90d43612b9906f16c812101033 (diff) | |
| parent | 77b339f7b6c7e167ecaf9374eb6876b498d8cb83 (diff) | |
| download | libgit2-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/odb.h')
| -rw-r--r-- | include/git2/odb.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/git2/odb.h b/include/git2/odb.h index 114f6b317..4f1e18bc1 100644 --- a/include/git2/odb.h +++ b/include/git2/odb.h @@ -247,7 +247,7 @@ GIT_EXTERN(int) git_odb_write(git_oid *out, git_odb *odb, const void *data, size * @param type type of the object that will be written * @return 0 if the stream was created; error code otherwise */ -GIT_EXTERN(int) git_odb_open_wstream(git_odb_stream **out, git_odb *db, size_t size, git_otype type); +GIT_EXTERN(int) git_odb_open_wstream(git_odb_stream **out, git_odb *db, git_off_t size, git_otype type); /** * Write to an odb stream |
