]> granicus.if.org Git - git/commitdiff
use strbuf_addstr() instead of strbuf_addf() with "%s", part 2
authorRené Scharfe <l.s.r@web.de>
Tue, 27 Sep 2016 19:08:21 +0000 (21:08 +0200)
committerJunio C Hamano <gitster@pobox.com>
Tue, 27 Sep 2016 21:02:40 +0000 (14:02 -0700)
Replace uses of strbuf_addf() for adding strings with more lightweight
strbuf_addstr() calls.  This is shorter and makes the intent clearer.

bc57b9c0cc5a123365a922fa1831177e3fd607ed already converted three cases,
this patch covers two more.

A semantic patch for Coccinelle is included for easier checking for
new cases that might be introduced in the future.

Signed-off-by: Rene Scharfe <l.s.r@web.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/submodule--helper.c
contrib/coccinelle/strbuf.cocci
submodule.c

index 8807539115b0284bb56b5a2d75226fab27b8cb5a..dbe5699fe688faeec3bdad899f229746b96be57f 100644 (file)
@@ -637,7 +637,7 @@ static int prepare_to_clone_next_submodule(const struct cache_entry *ce,
                if (suc->recursive_prefix)
                        strbuf_addf(&sb, "%s/%s", suc->recursive_prefix, ce->name);
                else
-                       strbuf_addf(&sb, "%s", ce->name);
+                       strbuf_addstr(&sb, ce->name);
                strbuf_addf(out, _("Skipping unmerged submodule %s"), sb.buf);
                strbuf_addch(out, '\n');
                goto cleanup;
index 7932d48cdf4a909e929dd601712f46a815e0c671..4b7553f833f1553219432d352930a3248d01a48b 100644 (file)
@@ -3,3 +3,9 @@ expression E1, E2;
 @@
 - strbuf_addf(E1, E2);
 + strbuf_addstr(E1, E2);
+
+@@
+expression E1, E2;
+@@
+- strbuf_addf(E1, "%s", E2);
++ strbuf_addstr(E1, E2);
index 1b5cdfb7e784d646c15e59afb2fb43587a8ff8e9..95a7ac544bee28a3cf76e17819680a099a053ec7 100644 (file)
@@ -374,7 +374,7 @@ void show_submodule_summary(FILE *f, const char *path,
                        find_unique_abbrev(one, DEFAULT_ABBREV));
        if (!fast_backward && !fast_forward)
                strbuf_addch(&sb, '.');
-       strbuf_addf(&sb, "%s", find_unique_abbrev(two, DEFAULT_ABBREV));
+       strbuf_addstr(&sb, find_unique_abbrev(two, DEFAULT_ABBREV));
        if (message)
                strbuf_addf(&sb, " %s%s\n", message, reset);
        else