diff options
author | René Scharfe <l.s.r@web.de> | 2016-07-19 20:36:29 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2016-07-19 11:48:35 -0700 |
commit | 8109984d619467ad26c6a76d59b0a5de8a86e6d6 (patch) | |
tree | bf026f0165f1b8268089c4ec0e0bb402e3a6ee15 /path.c | |
parent | Git 2.6.6 (diff) | |
download | tgif-8109984d619467ad26c6a76d59b0a5de8a86e6d6.tar.xz |
use strbuf_addbuf() for appending a strbuf to another
Use strbuf_addbuf() where possible; it's shorter and more efficient.
Signed-off-by: Rene Scharfe <l.s.r@web.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'path.c')
-rw-r--r-- | path.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -246,7 +246,7 @@ static void do_submodule_path(struct strbuf *buf, const char *path, strbuf_addstr(buf, git_dir); } strbuf_addch(buf, '/'); - strbuf_addstr(&git_submodule_dir, buf->buf); + strbuf_addbuf(&git_submodule_dir, buf); strbuf_vaddf(buf, fmt, args); |