aboutsummaryrefslogtreecommitdiffstats
path: root/ui.c
diff options
context:
space:
mode:
authorSam Anthony <sam@samanthony.xyz>2025-03-01 12:41:09 -0500
committerSam Anthony <sam@samanthony.xyz>2025-03-01 12:41:09 -0500
commit5438f11e0d826b0d6222b0bc9bea5b5a0c23f6f8 (patch)
tree05510a4d591ff1d60dd6c8e3cf37ef1dcc880a67 /ui.c
parente9e5c21068ab8d92b69d522a752f4362a112242b (diff)
downloadvolute-5438f11e0d826b0d6222b0bc9bea5b5a0c23f6f8.zip
make volume flow rate reader array constant
Diffstat (limited to 'ui.c')
-rw-r--r--ui.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui.c b/ui.c
index fea7e20..e3e729f 100644
--- a/ui.c
+++ b/ui.c
@@ -29,7 +29,7 @@ static const PressureReader pressure_readers[nelem(pressure_units)] = {
};
static const char *const volume_flow_rate_units[] = {"m³/s", "CFM"};
-static VolumeFlowRateReader volume_flow_rate_readers[nelem(volume_flow_rate_units)] = {
+static const VolumeFlowRateReader volume_flow_rate_readers[nelem(volume_flow_rate_units)] = {
as_cubic_metre_per_sec, as_cubic_foot_per_min,
};