Avoid a printf format specifier warning.

This dodges a warning emitted by the FreeBSD system gcc when compiling
libc for architectures which don't use clang as the system compiler.
This commit is contained in:
Jason Evans 2018-04-16 09:07:23 -07:00
parent 3f0dc64c6b
commit 2a80d6f15b

View File

@ -247,7 +247,7 @@ emitter_begin(emitter_t *emitter) {
emitter_nest_inc(emitter);
} else {
// tabular init
emitter_printf(emitter, "");
emitter_printf(emitter, "%s", "");
}
}