On Wed, 6 Jul 2016, Junio C Hamano wrote: > Thanks; will apply with a miniscule fix. > > > ----- >8 > > Subject: sideband.c: small optimization of strbuf usage > > > > Signed-off-by: Nicolas Pitre <n...@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"); > > '\n', or "\n"[0] ;-)
Obviously. Nicolas -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html