trace2: add dots directly to strbuf in perf_fmt_prepare()
commit5c34d2f03e4a7505a6acb71b6a1be8d85d1cde05
authorRené Scharfe <l.s.r@web.de>
Mon, 4 Nov 2019 19:27:54 +0000 (4 20:27 +0100)
committerJunio C Hamano <gitster@pobox.com>
Wed, 6 Nov 2019 02:45:18 +0000 (6 11:45 +0900)
tree6e5da2bd1c3b4fe9c339ff7b66f057e162b021d9
parentda72936f544fec5a335e66432610e4cef4430991
trace2: add dots directly to strbuf in perf_fmt_prepare()

The initialization function of the Trace2 performance format target sets
aside a stash of dots for indenting output.  Get rid of it and use
strbuf_addchars() to provide dots on demand instead.  This shortens the
code, gets rid of a small heap allocation and is a bit more efficient.

Signed-off-by: René Scharfe <l.s.r@web.de>
Acked-by: Jeff King <peff@peff.net>
Acked-by: Jeff Hostetler <jeffhost@microsoft.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
trace2/tr2_tgt_perf.c