diff options
author | Junio C Hamano <gitster@pobox.com> | 2016-10-28 09:01:23 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2016-10-28 09:01:23 -0700 |
commit | c8fd2201756f9cd10a796311a1b25d7a2ab2a3b9 (patch) | |
tree | 6654ec0ab1a53959fe62fa526445efe71deb0dfb /merge-recursive.c | |
parent | 0582a34f525a95a1c592f111fbf64dd45a4d8e70 (diff) | |
parent | a94bb683970a111b467a36590ca36e52754ad504 (diff) | |
download | git-c8fd2201756f9cd10a796311a1b25d7a2ab2a3b9.tar.gz git-c8fd2201756f9cd10a796311a1b25d7a2ab2a3b9.tar.xz |
Merge branch 'rs/cocci' into maint
Code cleanup.
* rs/cocci:
use strbuf_add_unique_abbrev() for adding short hashes, part 3
remove unnecessary NULL check before free(3)
coccicheck: make transformation for strbuf_addf(sb, "...") more precise
use strbuf_add_unique_abbrev() for adding short hashes, part 2
use strbuf_addstr() instead of strbuf_addf() with "%s", part 2
gitignore: ignore output files of coccicheck make target
use strbuf_addstr() for adding constant strings to a strbuf, part 2
add coccicheck make target
contrib/coccinelle: fix semantic patch for oid_to_hex_r()
Diffstat (limited to 'merge-recursive.c')
-rw-r--r-- | merge-recursive.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/merge-recursive.c b/merge-recursive.c index e34912683..aa92e30f6 100644 --- a/merge-recursive.c +++ b/merge-recursive.c @@ -202,11 +202,11 @@ static void output_commit_title(struct merge_options *o, struct commit *commit) strbuf_addf(&o->obuf, "virtual %s\n", merge_remote_util(commit)->name); else { - strbuf_addf(&o->obuf, "%s ", - find_unique_abbrev(commit->object.oid.hash, - DEFAULT_ABBREV)); + strbuf_add_unique_abbrev(&o->obuf, commit->object.oid.hash, + DEFAULT_ABBREV); + strbuf_addch(&o->obuf, ' '); if (parse_commit(commit) != 0) - strbuf_addf(&o->obuf, _("(bad commit)\n")); + strbuf_addstr(&o->obuf, _("(bad commit)\n")); else { const char *title; const char *msg = get_commit_buffer(commit, NULL); |