mirror of
https://github.com/jemalloc/jemalloc.git
synced 2026-04-14 22:51:50 +03:00
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:
parent
3f0dc64c6b
commit
2a80d6f15b
1 changed files with 1 additions and 1 deletions
|
|
@ -247,7 +247,7 @@ emitter_begin(emitter_t *emitter) {
|
|||
emitter_nest_inc(emitter);
|
||||
} else {
|
||||
// tabular init
|
||||
emitter_printf(emitter, "");
|
||||
emitter_printf(emitter, "%s", "");
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue