summaryrefslogtreecommitdiffstats
path: root/profile.c
diff options
context:
space:
mode:
authorGravatar Anton Lundin <glance@acc.umu.se>2015-01-25 18:06:27 +0100
committerGravatar Dirk Hohndel <dirk@hohndel.org>2015-01-25 09:56:37 -0800
commited9a060d76db4b56f89b2f0d3f7fd87c9d98f239 (patch)
treedbd9efd20d0413816cbe8e73b019017e0dac9e68 /profile.c
parent8cd24f243261d182b058952f5b6ff7552eea5389 (diff)
downloadsubsurface-ed9a060d76db4b56f89b2f0d3f7fd87c9d98f239.tar.gz
More descriptive variable in calls to get_dive_gas
In a previous patch, 37830bdb ("Always show deco gas as dive gas") the semantic of the last variable was changed. This updates other calls to this function. This is nothing but documenting changes. Signed-off-by: Anton Lundin <glance@acc.umu.se> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'profile.c')
-rw-r--r--profile.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/profile.c b/profile.c
index 3e5887bd0..53c50e303 100644
--- a/profile.c
+++ b/profile.c
@@ -1052,12 +1052,12 @@ static void debug_print_profiledata(struct plot_info *pi)
*/
void create_plot_info_new(struct dive *dive, struct divecomputer *dc, struct plot_info *pi, bool fast)
{
- int o2, he, o2low;
+ int o2, he, o2max;
init_decompression(dive);
/* Create the new plot data */
free((void *)last_pi_entry_new);
- get_dive_gas(dive, &o2, &he, &o2low);
+ get_dive_gas(dive, &o2, &he, &o2max);
if (he > 0) {
pi->dive_type = TRIMIX;
} else {