diff options
author | Junio C Hamano <gitster@pobox.com> | 2016-08-08 14:48:41 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2016-08-08 14:48:41 -0700 |
commit | 940622bc8b33e085f62c5bcfe6183fe6f57888e2 (patch) | |
tree | 317b4e1134c92f488f28280d7441db43fb9e3454 /builtin | |
parent | 68e80da479ff940aea3f34447336e523b448f34c (diff) | |
parent | bc57b9c0cc5a123365a922fa1831177e3fd607ed (diff) | |
download | git-940622bc8b33e085f62c5bcfe6183fe6f57888e2.tar.gz git-940622bc8b33e085f62c5bcfe6183fe6f57888e2.tar.xz |
Merge branch 'rs/use-strbuf-addstr'
* rs/use-strbuf-addstr:
use strbuf_addstr() instead of strbuf_addf() with "%s"
use strbuf_addstr() for adding constant strings to a strbuf
Diffstat (limited to 'builtin')
-rw-r--r-- | builtin/fmt-merge-msg.c | 2 | ||||
-rw-r--r-- | builtin/rev-parse.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/builtin/fmt-merge-msg.c b/builtin/fmt-merge-msg.c index e5658c320..ac84e99f3 100644 --- a/builtin/fmt-merge-msg.c +++ b/builtin/fmt-merge-msg.c @@ -272,7 +272,7 @@ static int cmp_string_list_util_as_integral(const void *a_, const void *b_) static void add_people_count(struct strbuf *out, struct string_list *people) { if (people->nr == 1) - strbuf_addf(out, "%s", people->items[0].string); + strbuf_addstr(out, people->items[0].string); else if (people->nr == 2) strbuf_addf(out, "%s (%d) and %s (%d)", people->items[0].string, diff --git a/builtin/rev-parse.c b/builtin/rev-parse.c index c961b74c5..76cf05e2a 100644 --- a/builtin/rev-parse.c +++ b/builtin/rev-parse.c @@ -469,7 +469,7 @@ static int cmd_parseopt(int argc, const char **argv, const char *prefix) (stop_at_non_option ? PARSE_OPT_STOP_AT_NON_OPTION : 0) | PARSE_OPT_SHELL_EVAL); - strbuf_addf(&parsed, " --"); + strbuf_addstr(&parsed, " --"); sq_quote_argv(&parsed, argv, 0); puts(parsed.buf); return 0; |