summaryrefslogtreecommitdiffstats
path: root/equipment.c
diff options
context:
space:
mode:
Diffstat (limited to 'equipment.c')
-rw-r--r--equipment.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/equipment.c b/equipment.c
index 64a05d5b0..c7a683b89 100644
--- a/equipment.c
+++ b/equipment.c
@@ -360,7 +360,7 @@ static void fill_cylinder_info(struct cylinder_widget *cylinder, cylinder_t *cyl
}
if (pressure && output_units.volume == CUFT) {
- volume = cuft_to_ml(volume);
+ volume = cuft_to_l(volume);
volume /= bar_to_atm(pressure);
}
@@ -464,7 +464,7 @@ static void fill_tank_list(GtkListStore *store)
/* Is it in cuft and psi? */
if (psi) {
double bar = psi_to_bar(psi);
- double airvolume = cuft_to_ml(size);
+ double airvolume = cuft_to_l(size) * 1000.0;
double atm = bar_to_atm(bar);
ml = airvolume / atm + 0.5;