From: Nicolas Pitre <nico@fluxnic.net> Date: 2016-07-07 00:57:07
On Wed, 6 Jul 2016, Junio C Hamano wrote:
Thanks; will apply with a miniscule fix.
quoted
----- >8
Subject: sideband.c: small optimization of strbuf usage
Signed-off-by: Nicolas Pitre <nico@fluxnic.net>
...
@@ -97,7 +97,7 @@ int recv_sideband(const char *me, int in_stream, int out) } if (outbuf.len) {- strbuf_addf(&outbuf, "\n");+ strbuf_addch(&outbuf, "\n");