summaryrefslogtreecommitdiff
path: root/environment.c
diff options
context:
space:
mode:
authorNguyễn Thái Ngọc Duy <pclouds@gmail.com>2014-03-16 13:35:00 (GMT)
committerJunio C Hamano <gitster@pobox.com>2014-03-31 17:31:43 (GMT)
commit8640d496823b0aa1d35523b98d8b3f21b54004cd (patch)
tree5cfda993d188cbb4a9818acdb79af2e7930fd304 /environment.c
parent125f81461db82e29d03fa788e4a897e6ab7d1ded (diff)
downloadgit-8640d496823b0aa1d35523b98d8b3f21b54004cd.zip
git-8640d496823b0aa1d35523b98d8b3f21b54004cd.tar.gz
git-8640d496823b0aa1d35523b98d8b3f21b54004cd.tar.bz2
environment.c: fix constness for odb_pack_keep()
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'environment.c')
-rw-r--r--environment.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/environment.c b/environment.c
index c3c8606..5c4815d 100644
--- a/environment.c
+++ b/environment.c
@@ -237,7 +237,7 @@ int odb_mkstemp(char *template, size_t limit, const char *pattern)
return xmkstemp_mode(template, mode);
}
-int odb_pack_keep(char *name, size_t namesz, unsigned char *sha1)
+int odb_pack_keep(char *name, size_t namesz, const unsigned char *sha1)
{
int fd;