aboutsummaryrefslogtreecommitdiff
path: root/cache.h
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2007-04-11 18:43:01 -0700
committerJunio C Hamano <junkio@cox.net>2007-04-11 18:43:01 -0700
commit566f5b217df73d6a642a0857cc5c13c11f84e7c3 (patch)
treeff172bf2658ca4e1f4c88d30bb80c8af17f29b2d /cache.h
parentb06dcf8cb83a9b7655bad5f0f6d84e68fc78beb3 (diff)
parent9b11d24d4156e0b2246383faad16eb8aa0caeefb (diff)
downloadgit-566f5b217df73d6a642a0857cc5c13c11f84e7c3.tar.gz
git-566f5b217df73d6a642a0857cc5c13c11f84e7c3.tar.xz
Merge branch 'maint'
* maint: GIT 1.5.1.1 cvsserver: Fix handling of diappeared files on update fsck: do not complain on detached HEAD. (encode_85, decode_85): Mark source buffer pointer as "const".
Diffstat (limited to 'cache.h')
-rw-r--r--cache.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/cache.h b/cache.h
index eb57507b8..b1bd9e46c 100644
--- a/cache.h
+++ b/cache.h
@@ -472,8 +472,8 @@ extern int pager_in_use;
extern int pager_use_color;
/* base85 */
-int decode_85(char *dst, char *line, int linelen);
-void encode_85(char *buf, unsigned char *data, int bytes);
+int decode_85(char *dst, const char *line, int linelen);
+void encode_85(char *buf, const unsigned char *data, int bytes);
/* alloc.c */
struct blob;