[PATCH] More descriptive variable in calls to get_dive_gas

Anton Lundin glance at acc.umu.se
Sun Jan 25 09:06:27 PST 2015


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 at acc.umu.se>
---
 profile.c        | 4 ++--
 qt-ui/models.cpp | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/profile.c b/profile.c
index 3e5887b..53c50e3 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 {
diff --git a/qt-ui/models.cpp b/qt-ui/models.cpp
index 8a5b823..b289813 100644
--- a/qt-ui/models.cpp
+++ b/qt-ui/models.cpp
@@ -1105,8 +1105,8 @@ QVariant TripItem::data(int column, int role) const
 
 static int nitrox_sort_value(struct dive *dive)
 {
-	int o2, he, o2low;
-	get_dive_gas(dive, &o2, &he, &o2low);
+	int o2, he, o2max;
+	get_dive_gas(dive, &o2, &he, &o2max);
 	return he * 1000 + o2;
 }
 
-- 
2.1.0



More information about the subsurface mailing list