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>
This commit is contained in:
Anton Lundin 2015-01-25 18:06:27 +01:00 committed by Dirk Hohndel
parent 8cd24f2432
commit ed9a060d76
2 changed files with 4 additions and 4 deletions

View file

@ -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;
}