summaryrefslogtreecommitdiff
path: root/src/pack.h
diff options
context:
space:
mode:
authorLinquize <linquize@yahoo.com.hk>2013-10-31 22:59:42 +0800
committerVicent Marti <tanoku@gmail.com>2013-11-01 17:36:04 +0100
commit3343b5ffd37d25fa9f55c23c417cf761a7849e9f (patch)
treee3d2155c004ff26dc84ada5bcb84cc51a4cc075a /src/pack.h
parentab44c62e548373c1494e967f54720faa06ce38b7 (diff)
downloadlibgit2-3343b5ffd37d25fa9f55c23c417cf761a7849e9f.tar.gz
Fix warning on win64
Diffstat (limited to 'src/pack.h')
-rw-r--r--src/pack.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pack.h b/src/pack.h
index ddeefea1d..baad361f8 100644
--- a/src/pack.h
+++ b/src/pack.h
@@ -112,7 +112,7 @@ typedef struct git_packfile_stream {
git_mwindow *mw;
} git_packfile_stream;
-int git_packfile__object_header(unsigned char *hdr, unsigned long size, git_otype type);
+int git_packfile__object_header(unsigned char *hdr, size_t size, git_otype type);
int git_packfile_unpack_header(
size_t *size_p,