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 /src/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 'src/odb.h')
| -rw-r--r-- | src/odb.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -49,7 +49,7 @@ int git_odb__hashobj(git_oid *id, git_rawobj *obj); /* * Format the object header such as it would appear in the on-disk object */ -int git_odb__format_object_header(char *hdr, size_t n, size_t obj_len, git_otype obj_type); +int git_odb__format_object_header(char *hdr, size_t n, git_off_t obj_len, git_otype obj_type); /* * Hash an open file descriptor. * This is a performance call when the contents of a fd need to be hashed, |
