зеркало из https://github.com/microsoft/git.git
Merge branch 'ys/bisect-object-id-missing-conversion-fix'
Code clean-up. * ys/bisect-object-id-missing-conversion-fix: bisect: use oid_to_hex() for converting object_id hashes to hex strings
This commit is contained in:
Коммит
aa1c2b6804
4
bisect.c
4
bisect.c
|
@ -145,10 +145,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)
|
||||
|
|
Загрузка…
Ссылка в новой задаче