Merge branch 'jk/maint-advise-vaddf'
The advise() function did not use varargs correctly to format its message. * jk/maint-advise-vaddf: advice: pass varargs to strbuf_vaddf, not strbuf_addf
This commit is contained in:
commit
31c4c833d7
2
advice.c
2
advice.c
@ -32,7 +32,7 @@ void advise(const char *advice, ...)
|
|||||||
const char *cp, *np;
|
const char *cp, *np;
|
||||||
|
|
||||||
va_start(params, advice);
|
va_start(params, advice);
|
||||||
strbuf_addf(&buf, advice, params);
|
strbuf_vaddf(&buf, advice, params);
|
||||||
va_end(params);
|
va_end(params);
|
||||||
|
|
||||||
for (cp = buf.buf; *cp; cp = np) {
|
for (cp = buf.buf; *cp; cp = np) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user