mirror of
https://github.com/jemalloc/jemalloc.git
synced 2026-07-24 22:03:07 +00: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:
@@ -247,7 +247,7 @@ emitter_begin(emitter_t *emitter) {
|
|||||||
emitter_nest_inc(emitter);
|
emitter_nest_inc(emitter);
|
||||||
} else {
|
} else {
|
||||||
// tabular init
|
// tabular init
|
||||||
emitter_printf(emitter, "");
|
emitter_printf(emitter, "%s", "");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user