summaryrefslogtreecommitdiff
path: root/builtin/rebase.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2018-11-21 11:39:01 (GMT)
committerJunio C Hamano <gitster@pobox.com>2018-11-21 11:39:01 (GMT)
commitc17f086ecad796b4179aa1b0209f00d4f8ffdc0f (patch)
tree2b26a57bd1b47f159447f11df86702907377b047 /builtin/rebase.c
parentbb75be6cb916297f271c846f2f9caa3daaaec718 (diff)
parent4d86503eed995fe27bfa284b55fc63328534d11b (diff)
downloadgit-c17f086ecad796b4179aa1b0209f00d4f8ffdc0f.zip
git-c17f086ecad796b4179aa1b0209f00d4f8ffdc0f.tar.gz
git-c17f086ecad796b4179aa1b0209f00d4f8ffdc0f.tar.bz2
Merge branch 'js/builtin-rebase-perf-fix-err-fix'
The object name of the tree reported in a recently added error message was wrong, which has been corrected. * js/builtin-rebase-perf-fix-err-fix: rebase: warn about the correct tree's OID
Diffstat (limited to 'builtin/rebase.c')
-rw-r--r--builtin/rebase.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/builtin/rebase.c b/builtin/rebase.c
index 1a27587..5b3e5ba 100644
--- a/builtin/rebase.c
+++ b/builtin/rebase.c
@@ -582,7 +582,8 @@ static int reset_head(struct object_id *oid, const char *action,
}
if (!reset_hard && !fill_tree_descriptor(&desc[nr++], &head_oid)) {
- ret = error(_("failed to find tree of %s"), oid_to_hex(oid));
+ ret = error(_("failed to find tree of %s"),
+ oid_to_hex(&head_oid));
goto leave_reset_head;
}