aboutsummaryrefslogtreecommitdiff
path: root/commit.h
diff options
context:
space:
mode:
authorNguyễn Thái Ngọc Duy <pclouds@gmail.com>2011-02-05 17:52:20 +0700
committerJunio C Hamano <gitster@pobox.com>2011-02-07 15:04:42 -0800
commitcf7b1cad0e8b024538de975dff5893262cec72d7 (patch)
tree4ac11b578ff4242c78970a48e0d2b2cdf000011f /commit.h
parenta2b7a3b3a966c5801efe968d4b5656fa5a885409 (diff)
downloadgit-cf7b1cad0e8b024538de975dff5893262cec72d7.tar.gz
git-cf7b1cad0e8b024538de975dff5893262cec72d7.tar.xz
Add const to parse_{commit,tag}_buffer()
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'commit.h')
-rw-r--r--commit.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/commit.h b/commit.h
index eb6c5af1f..659c87c3e 100644
--- a/commit.h
+++ b/commit.h
@@ -38,7 +38,7 @@ struct commit *lookup_commit_reference_gently(const unsigned char *sha1,
int quiet);
struct commit *lookup_commit_reference_by_name(const char *name);
-int parse_commit_buffer(struct commit *item, void *buffer, unsigned long size);
+int parse_commit_buffer(struct commit *item, const void *buffer, unsigned long size);
int parse_commit(struct commit *item);
/* Find beginning and length of commit subject. */