summaryrefslogtreecommitdiff
path: root/builtin/am.c
diff options
context:
space:
mode:
authorbrian m. carlson <sandals@crustytoothpaste.net>2017-11-12 21:28:54 (GMT)
committerJunio C Hamano <gitster@pobox.com>2017-11-13 04:20:44 (GMT)
commiteb0ccfd7f5ce1765ada74abf272f002e1e34d1e4 (patch)
tree9042f094bd1f12d1249d714fdd177fcbe4fbf2a4 /builtin/am.c
parent78a6766802ef32b82e6062e8e6ac5621894cc4a2 (diff)
downloadgit-eb0ccfd7f5ce1765ada74abf272f002e1e34d1e4.zip
git-eb0ccfd7f5ce1765ada74abf272f002e1e34d1e4.tar.gz
git-eb0ccfd7f5ce1765ada74abf272f002e1e34d1e4.tar.bz2
Switch empty tree and blob lookups to use hash abstraction
Switch the uses of empty_tree_oid and empty_blob_oid to use the current_hash abstraction that represents the current hash algorithm in use. Signed-off-by: brian m. carlson <sandals@crustytoothpaste.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin/am.c')
-rw-r--r--builtin/am.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/am.c b/builtin/am.c
index 92c4853..99dbde3 100644
--- a/builtin/am.c
+++ b/builtin/am.c
@@ -1433,7 +1433,7 @@ static void write_index_patch(const struct am_state *state)
if (!get_oid_tree("HEAD", &head))
tree = lookup_tree(&head);
else
- tree = lookup_tree(&empty_tree_oid);
+ tree = lookup_tree(the_hash_algo->empty_tree);
fp = xfopen(am_path(state, "patch"), "w");
init_revisions(&rev_info, NULL);