diff options
| author | Sam Anthony <sam@samanthony.xyz> | 2025-03-01 12:41:09 -0500 |
|---|---|---|
| committer | Sam Anthony <sam@samanthony.xyz> | 2025-03-01 12:41:09 -0500 |
| commit | 5438f11e0d826b0d6222b0bc9bea5b5a0c23f6f8 (patch) | |
| tree | 05510a4d591ff1d60dd6c8e3cf37ef1dcc880a67 /ui.c | |
| parent | e9e5c21068ab8d92b69d522a752f4362a112242b (diff) | |
| download | volute-5438f11e0d826b0d6222b0bc9bea5b5a0c23f6f8.zip | |
make volume flow rate reader array constant
Diffstat (limited to 'ui.c')
| -rw-r--r-- | ui.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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, }; |