summaryrefslogtreecommitdiff
path: root/cache.h
diff options
context:
space:
mode:
authorLibravatar Junio C Hamano <junkio@cox.net>2007-04-11 18:43:01 -0700
committerLibravatar Junio C Hamano <junkio@cox.net>2007-04-11 18:43:01 -0700
commit566f5b217df73d6a642a0857cc5c13c11f84e7c3 (patch)
treeff172bf2658ca4e1f4c88d30bb80c8af17f29b2d /cache.h
parentgitweb: Allow configuring the default projects order and add order 'none' (diff)
parentGIT 1.5.1.1 (diff)
downloadtgif-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 eb57507b80..b1bd9e46c2 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;