diff options
author | Peter Eriksen <s022018@student.dtu.dk> | 2006-04-02 14:44:09 +0200 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-04-04 00:11:19 -0700 |
commit | 8e4402592574d630cdb5ab4f55a1b7131802ff72 (patch) | |
tree | 5891c240ca498628ae66b8a7069ad9b90f123a2b /mktree.c | |
parent | contrib/git-svn: handle array values correctly (diff) | |
download | tgif-8e4402592574d630cdb5ab4f55a1b7131802ff72.tar.xz |
Use blob_, commit_, tag_, and tree_type throughout.
This replaces occurences of "blob", "commit", "tag", and "tree",
where they're really used as type specifiers, which we already
have defined global constants for.
Signed-off-by: Peter Eriksen <s022018@student.dtu.dk>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'mktree.c')
-rw-r--r-- | mktree.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -6,6 +6,7 @@ #include "cache.h" #include "strbuf.h" #include "quote.h" +#include "tree.h" static struct treeent { unsigned mode; @@ -67,7 +68,7 @@ static void write_tree(unsigned char *sha1) memcpy(buffer + offset, ent->sha1, 20); offset += 20; } - write_sha1_file(buffer, offset, "tree", sha1); + write_sha1_file(buffer, offset, tree_type, sha1); } static const char mktree_usage[] = "mktree [-z]"; |