diff options
author | Junio C Hamano <gitster@pobox.com> | 2014-01-10 10:33:13 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2014-01-10 10:33:13 -0800 |
commit | 34aacf30a39570e58de7c499f102b7196f2a9744 (patch) | |
tree | d9c92904fe01cf7895379b3f2c9582d646ffbd9f /commit.h | |
parent | b2132068c6df38b24b49dfc6fbbf0645b21ec037 (diff) | |
parent | 8785b7654bfbdbf718b950e86924753753548ff4 (diff) | |
download | git-34aacf30a39570e58de7c499f102b7196f2a9744.tar.gz |
Merge branch 'nd/commit-tree-constness'
Code clean-up.
* nd/commit-tree-constness:
commit.c: make "tree" a const pointer in commit_tree*()
Diffstat (limited to 'commit.h')
-rw-r--r-- | commit.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -232,11 +232,11 @@ struct commit_extra_header { extern void append_merge_tag_headers(struct commit_list *parents, struct commit_extra_header ***tail); -extern int commit_tree(const struct strbuf *msg, unsigned char *tree, +extern int commit_tree(const struct strbuf *msg, const unsigned char *tree, struct commit_list *parents, unsigned char *ret, const char *author, const char *sign_commit); -extern int commit_tree_extended(const struct strbuf *msg, unsigned char *tree, +extern int commit_tree_extended(const struct strbuf *msg, const unsigned char *tree, struct commit_list *parents, unsigned char *ret, const char *author, const char *sign_commit, struct commit_extra_header *); |