From: René Scharfe Date: Sun, 25 Mar 2018 10:57:36 +0000 (+0200) Subject: bisect: use oid_to_hex() for converting object_id hashes to hex strings X-Git-Tag: v2.18.0-rc0~151^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=14ced5562c59f308bf421ae00e6567ad11169692;p=thirdparty%2Fgit.git 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 Reviewed-by: brian m. carlson Signed-off-by: Junio C Hamano --- diff --git a/bisect.c b/bisect.c index 6feed85337..478a81b660 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)