summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRené Scharfe <l.s.r@web.de>2018-03-25 10:57:36 (GMT)
committerJunio C Hamano <gitster@pobox.com>2018-03-25 16:48:05 (GMT)
commit14ced5562c59f308bf421ae00e6567ad11169692 (patch)
tree7930cfb7f79042c995df4a6c0bb2316827d1096a
parentf0a6068a9f3377a209c43282831e338d10aaf152 (diff)
downloadgit-14ced5562c59f308bf421ae00e6567ad11169692.zip
git-14ced5562c59f308bf421ae00e6567ad11169692.tar.gz
git-14ced5562c59f308bf421ae00e6567ad11169692.tar.bz2
bisect: use oid_to_hex() for converting object_id hashes to hex strings
Patch generated with Coccinelle and contrib/coccinelle/object_id.cocci. Signed-off-by: Rene Scharfe <l.s.r@web.de> Reviewed-by: brian m. carlson <sandals@crustytoothpaste.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r--bisect.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/bisect.c b/bisect.c
index 6feed85..478a81b 100644
--- a/bisect.c
+++ b/bisect.c
@@ -143,10 +143,10 @@ static void show_list(const char *debug, int counted, int nr,
fprintf(stderr, "%3d", weight(p));
else
fprintf(stderr, "---");
- fprintf(stderr, " %.*s", 8, sha1_to_hex(commit->object.oid.hash));
+ fprintf(stderr, " %.*s", 8, oid_to_hex(&commit->object.oid));
for (pp = commit->parents; pp; pp = pp->next)
fprintf(stderr, " %.*s", 8,
- sha1_to_hex(pp->item->object.oid.hash));
+ oid_to_hex(&pp->item->object.oid));
subject_len = find_commit_subject(buf, &subject_start);
if (subject_len)