]> git.ipfire.org Git - thirdparty/git.git/blobdiff - builtin-fmt-merge-msg.c
Remove TYPE_* constant macros and use object_type enums consistently.
[thirdparty/git.git] / builtin-fmt-merge-msg.c
index fe0ef44b4051e74b10e14d6a694aaad98a005397..f20b27b8a9cfd78ad5ae8ba67f08ec25849394e2 100644 (file)
@@ -181,7 +181,7 @@ static void shortlog(const char *name, unsigned char *sha1,
        int flags = UNINTERESTING | TREECHANGE | SEEN | SHOWN | ADDED;
 
        branch = deref_tag(parse_object(sha1), sha1_to_hex(sha1), 40);
-       if (!branch || branch->type != TYPE_COMMIT)
+       if (!branch || branch->type != OBJ_COMMIT)
                return;
 
        setup_revisions(0, NULL, rev, NULL);