summaryrefslogtreecommitdiff
path: root/src/pack.c
diff options
context:
space:
mode:
authorP.S.V.R <pmq2001@gmail.com>2016-01-13 11:02:38 +0800
committerP.S.V.R <pmq2001@gmail.com>2016-01-13 11:02:38 +0800
commitb644e223aa04c49f7cc33fa1a4a26b2dbaf7aaf7 (patch)
tree53c256e6221e001c39ce367b8a98a5e482068554 /src/pack.c
parent700f0aff24d9b292f24d802c3af3b5c1705193c5 (diff)
downloadlibgit2-b644e223aa04c49f7cc33fa1a4a26b2dbaf7aaf7.tar.gz
Make packfile_unpack_compressed a private API
Diffstat (limited to 'src/pack.c')
-rw-r--r--src/pack.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pack.c b/src/pack.c
index 45dd4d5be..f6cb3a548 100644
--- a/src/pack.c
+++ b/src/pack.c
@@ -21,7 +21,7 @@ GIT__USE_OIDMAP
static int packfile_open(struct git_pack_file *p);
static git_off_t nth_packed_object_offset(const struct git_pack_file *p, uint32_t n);
-int packfile_unpack_compressed(
+static int packfile_unpack_compressed(
git_rawobj *obj,
struct git_pack_file *p,
git_mwindow **w_curs,
@@ -843,7 +843,7 @@ void git_packfile_stream_free(git_packfile_stream *obj)
inflateEnd(&obj->zstream);
}
-int packfile_unpack_compressed(
+static int packfile_unpack_compressed(
git_rawobj *obj,
struct git_pack_file *p,
git_mwindow **w_curs,