diff options
| author | Sam Anthony <sam@samanthony.xyz> | 2025-04-27 11:41:56 -0400 |
|---|---|---|
| committer | Sam Anthony <sam@samanthony.xyz> | 2025-04-27 11:41:56 -0400 |
| commit | 693e2aed585a688d80870a9b93078e32abb7a36b (patch) | |
| tree | 5c9dec365c8509ec4bbc9cd481cb2f33c0665680 /compressor.c | |
| parent | dec2f0fe3ea9e3e95d6fc6abc421f1a81149c10c (diff) | |
| download | volute-693e2aed585a688d80870a9b93078e32abb7a36b.zip | |
fix printf conversion in compressor.c
Diffstat (limited to 'compressor.c')
| -rw-r--r-- | compressor.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |