From 693e2aed585a688d80870a9b93078e32abb7a36b Mon Sep 17 00:00:00 2001 From: Sam Anthony Date: Sun, 27 Apr 2025 11:41:56 -0400 Subject: fix printf conversion in compressor.c --- compressor.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compressor.c b/compressor.c index ba4cd8c..0211fff 100644 --- a/compressor.c +++ b/compressor.c @@ -191,7 +191,7 @@ load_point(const toml_table_t *tbl, const char *key, const char *flowunit, Point } if (parse_flow(flowval.u.d, flowunit, &flow) != 0) { - weprintf("invalid flow: %d %s", flowval.u.d, flowunit); + weprintf("invalid flow: %f %s", flowval.u.d, flowunit); toml_free(subtbl); return 1; } -- cgit v1.2.3