diff options
author | Junio C Hamano <gitster@pobox.com> | 2016-07-19 13:22:22 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2016-07-19 13:22:22 -0700 |
commit | 96e08010ee5b9d1dbfbcc8561fa69f972a415a38 (patch) | |
tree | 03768d6b32e30959c8c587fcd73ca3c1da8ae275 /bisect.c | |
parent | f5236a776f31de2654bca9001aa74ef9fe0819d8 (diff) | |
parent | 54307ea7c3ced760ee375483a786ec7180798aed (diff) | |
download | git-96e08010ee5b9d1dbfbcc8561fa69f972a415a38.tar.gz |
Merge branch 'jk/printf-format'
Code clean-up to avoid using a variable string that compilers may
feel untrustable as printf-style format given to write_file()
helper function.
* jk/printf-format:
commit.c: remove print_commit_list()
avoid using sha1_to_hex output as printf format
walker: let walker_say take arbitrary formats
Diffstat (limited to 'bisect.c')
-rw-r--r-- | bisect.c | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -646,7 +646,10 @@ static void exit_if_skipped_commits(struct commit_list *tried, printf("There are only 'skip'ped commits left to test.\n" "The first %s commit could be any of:\n", term_bad); - print_commit_list(tried, "%s\n", "%s\n"); + + for ( ; tried; tried = tried->next) + printf("%s\n", oid_to_hex(&tried->item->object.oid)); + if (bad) printf("%s\n", oid_to_hex(bad)); printf(_("We cannot bisect more!\n")); |