summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2007-04-10 00:56:33 +0200
committerJunio C Hamano <junkio@cox.net>2007-04-11 00:51:20 -0700
commitf98157720239f0dd94d03632dc873e3eb3135e2f (patch)
tree9eb9713412e50f5a981ddfe862513e85830d6ecd
parent8bd26c4a2f7539f6418934858710c674bb139cdd (diff)
downloadgit-f98157720239f0dd94d03632dc873e3eb3135e2f.tar.gz
(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>
-rw-r--r--base85.c4
-rw-r--r--cache.h4
2 files changed, 4 insertions, 4 deletions
diff --git a/base85.c b/base85.c
index a9e97f89d9..a6c41d597a 100644
--- a/base85.c
+++ b/base85.c
@@ -37,7 +37,7 @@ static void prep_base85(void)
}
}
-int decode_85(char *dst, char *buffer, int len)
+int decode_85(char *dst, const char *buffer, int len)
{
prep_base85();
@@ -82,7 +82,7 @@ int decode_85(char *dst, char *buffer, int len)
return 0;
}
-void encode_85(char *buf, unsigned char *data, int bytes)
+void encode_85(char *buf, const unsigned char *data, int bytes)
{
prep_base85();
diff --git a/cache.h b/cache.h
index 384b260227..1904131f27 100644
--- a/cache.h
+++ b/cache.h
@@ -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;