From e74435a5169b56be901196ad172b4dbda124254d Mon Sep 17 00:00:00 2001 From: Jeff King Date: Thu, 24 Oct 2013 13:59:49 -0400 Subject: sha1write: make buffer const-correct We are passed a "void *" and write it out without ever touching it; let's indicate that by using "const". Signed-off-by: Jeff King Signed-off-by: Junio C Hamano --- csum-file.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'csum-file.h') diff --git a/csum-file.h b/csum-file.h index 3b540bdc21..9dedb038ea 100644 --- a/csum-file.h +++ b/csum-file.h @@ -34,7 +34,7 @@ extern struct sha1file *sha1fd(int fd, const char *name); extern struct sha1file *sha1fd_check(const char *name); extern struct sha1file *sha1fd_throughput(int fd, const char *name, struct progress *tp); extern int sha1close(struct sha1file *, unsigned char *, unsigned int); -extern int sha1write(struct sha1file *, void *, unsigned int); +extern int sha1write(struct sha1file *, const void *, unsigned int); extern void sha1flush(struct sha1file *f); extern void crc32_begin(struct sha1file *); extern uint32_t crc32_end(struct sha1file *); -- cgit v1.2.3