X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=builtin-write-tree.c;h=50670dc7bf46c74e95b2e204d05afc077350a19f;hb=fa702003e4f63ecdc71d16b51efc02f33fe7931f;hp=ca06149f186449407c6536fcc3caa37cd4101ce3;hpb=86183fbb09ffe5d46eae1cf52023a1b5f8fbc047;p=git.git diff --git a/builtin-write-tree.c b/builtin-write-tree.c index ca06149f1..50670dc7b 100644 --- a/builtin-write-tree.c +++ b/builtin-write-tree.c @@ -50,10 +50,10 @@ int write_tree(unsigned char *sha1, int missing_ok, const char *prefix) if (prefix) { struct cache_tree *subtree = cache_tree_find(active_cache_tree, prefix); - memcpy(sha1, subtree->sha1, 20); + hashcpy(sha1, subtree->sha1); } else - memcpy(sha1, active_cache_tree->sha1, 20); + hashcpy(sha1, active_cache_tree->sha1); rollback_lock_file(lock_file);