diff options
author | Junio C Hamano <junkio@cox.net> | 2006-04-04 13:43:00 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-04-04 13:43:00 -0700 |
commit | 810e1523753553968aac827f57e0e24fc9af6546 (patch) | |
tree | 47ec02a8c4a16c1f04e79e10a9b47cbcdfe4f564 /mktree.c | |
parent | Merge branch 'lt/fix-sol-pack' (diff) | |
parent | Replace xmalloc+memset(0) with xcalloc. (diff) | |
download | tgif-810e1523753553968aac827f57e0e24fc9af6546.tar.xz |
Merge branch 'pe/cleanup'
* pe/cleanup:
Replace xmalloc+memset(0) with xcalloc.
Use blob_, commit_, tag_, and tree_type throughout.
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]"; |