Stats: Fix a printing bug when hpa_dirty_mult = -1
Missed a layer of indirection.
This commit is contained in:
parent
4f7cb3a413
commit
1f688490e1
@ -1476,8 +1476,9 @@ stats_general_print(emitter_t *emitter) {
|
|||||||
* representation.
|
* representation.
|
||||||
*/
|
*/
|
||||||
if (u32v == (uint32_t)-1) {
|
if (u32v == (uint32_t)-1) {
|
||||||
|
const char *neg1 = "-1";
|
||||||
emitter_kv(emitter, "hpa_dirty_mult",
|
emitter_kv(emitter, "hpa_dirty_mult",
|
||||||
"opt.hpa_dirty_mult", emitter_type_string, "-1");
|
"opt.hpa_dirty_mult", emitter_type_string, &neg1);
|
||||||
} else {
|
} else {
|
||||||
char buf[FXP_BUF_SIZE];
|
char buf[FXP_BUF_SIZE];
|
||||||
fxp_print(u32v, buf);
|
fxp_print(u32v, buf);
|
||||||
|
Loading…
Reference in New Issue
Block a user