X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=commit.c;h=11fca559d8a4bcb6b6dc67f41ec54991acaba11a;hb=885a86abe2e9f7b96a4e2012183c6751635840aa;hp=94f470b75cfc68bfd8e14d1e421e19c5ad6004d6;hpb=210a0be504829bad5a2821488d3c25cc406fed4a;p=git.git diff --git a/commit.c b/commit.c index 94f470b7..11fca559 100644 --- a/commit.c +++ b/commit.c @@ -56,10 +56,10 @@ static struct commit *check_commit(struct object *obj, const unsigned char *sha1, int quiet) { - if (obj->type != commit_type) { + if (obj->type != TYPE_COMMIT) { if (!quiet) error("Object %s is a %s, not a commit", - sha1_to_hex(sha1), obj->type); + sha1_to_hex(sha1), typename(obj->type)); return NULL; } return (struct commit *) obj; @@ -86,11 +86,11 @@ struct commit *lookup_commit(const unsigned char *sha1) if (!obj) { struct commit *ret = xcalloc(1, sizeof(struct commit)); created_object(sha1, &ret->object); - ret->object.type = commit_type; + ret->object.type = TYPE_COMMIT; return ret; } if (!obj->type) - obj->type = commit_type; + obj->type = TYPE_COMMIT; return check_commit(obj, sha1, 0); }