diff options
author | Vito Caputo <vcaputo@pengaru.com> | 2024-10-19 14:24:35 -0700 |
---|---|---|
committer | Vito Caputo <vcaputo@pengaru.com> | 2024-10-19 14:24:35 -0700 |
commit | 2e99df641671941ab43823168a66e41c8d44aa36 (patch) | |
tree | c603e9c7b25d3c5fcdbf9bea20bfe22d0b74caf0 /src/vcr.c | |
parent | 585fd85cfb825e21112e1754a04d00999b3351b8 (diff) |
charts/vcr: s/double/float/
Double precision is unnecessary for this, use floats throughout,
at least for everything vmon related.
Diffstat (limited to 'src/vcr.c')
-rw-r--r-- | src/vcr.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1195,7 +1195,7 @@ void vcr_mark_finish_line(vcr_t *vcr, vcr_layer_t layer, int row) * * the only layers supported right now are grapha/graphb */ -void vcr_draw_bar(vcr_t *vcr, vcr_layer_t layer, int row, double t, int min_height) +void vcr_draw_bar(vcr_t *vcr, vcr_layer_t layer, int row, float t, int min_height) { int height, y = row * VCR_ROW_HEIGHT; @@ -1208,7 +1208,7 @@ void vcr_draw_bar(vcr_t *vcr, vcr_layer_t layer, int row, double t, int min_heig if ((row + 1) * VCR_ROW_HEIGHT >= vcr->height) return; - height = fabs(t) * (double)(VCR_ROW_HEIGHT - 1); + height = fabsf(t) * (float)(VCR_ROW_HEIGHT - 1); if (height < min_height) height = min_height; |