Emily Shaffer <emilyshaffer@xxxxxxxxxx> writes: > +static inline void get_compiler_info(struct strbuf *info) > +{ > + ... > + if (len == info->len) > + strbuf_addf(info, _("no compiler information available\n")); s/addf/addstr/ to squelch https://travis-ci.org/git/git/jobs/657572439 > +} > + > +static inline void get_libc_info(struct strbuf *info) > +{ > + ... > + if (len == info->len) > + strbuf_addf(info, _("no libc information available\n")); Ditto. > +} > + > +#endif /* COMPILER_H */