diff options
author | Jim Meyering <jim@meyering.net> | 2007-04-10 00:56:33 +0200 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2007-04-11 00:51:20 -0700 |
commit | f98157720239f0dd94d03632dc873e3eb3135e2f (patch) | |
tree | 9eb9713412e50f5a981ddfe862513e85830d6ecd /cache.h | |
parent | Documentation: show-ref: document --exclude-existing (diff) | |
download | tgif-f98157720239f0dd94d03632dc873e3eb3135e2f.tar.xz |
(encode_85, decode_85): Mark source buffer pointer as "const".
Signed-off-by: Jim Meyering <jim@meyering.net>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'cache.h')
-rw-r--r-- | cache.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -468,8 +468,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; |