X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=commit.c;h=913dbabd1c12772d574f5814f73a12ed6bd4a9da;hb=36612e4daf8b5b5eaf16315aa13c66925f878cd6;hp=74d66018800d7a2a2b3a3365e87a23049690da6b;hpb=1b6d0ae58822ca35ce325dab978c35f0265f7227;p=git.git diff --git a/commit.c b/commit.c index 74d660188..913dbabd1 100644 --- a/commit.c +++ b/commit.c @@ -245,10 +245,10 @@ int unregister_shallow(const unsigned char *sha1) return 0; } -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) { - char *tail = buffer; - char *bufptr = buffer; + const char *tail = buffer; + const char *bufptr = buffer; unsigned char parent[20]; struct commit_list **pptr; struct commit_graft *graft; @@ -515,7 +515,7 @@ void sort_in_topological_order(struct commit_list ** list, int lifo) commit = work_item->item; for (parents = commit->parents; parents ; parents = parents->next) { - struct commit *parent=parents->item; + struct commit *parent = parents->item; if (!parent->indegree) continue;