On 7/23/2018 9:06 AM, SZEDER Gábor wrote:
bisect--helper: use oid_to_hex()
Signed-off-by: SZEDER Gábor <szeder....@gmail.com>
---
builtin/bisect--helper.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/builtin/bisect--helper.c b/builtin/bisect--helper.c
index fc02f889e6..eac4c27787 100644
--- a/builtin/bisect--helper.c
+++ b/builtin/bisect--helper.c
@@ -547,7 +547,7 @@ static int bisect_start(struct bisect_terms *terms, int
no_checkout,
if (!get_oid(head, &head_oid) &&
!starts_with(head, "refs/heads/")) {
strbuf_reset(&start_head);
- strbuf_addstr(&start_head, sha1_to_hex(head_oid.hash));
+ strbuf_addstr(&start_head, oid_to_hex(&head_oid));
} else if (!get_oid(head, &head_oid) &&
skip_prefix(head, "refs/heads/", &head)) {
/*
This patch looks obviously correct. Thanks!
-Stolee