Cleanup: remove unused parameter

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Dirk Hohndel 2017-12-08 08:19:13 -06:00 committed by Lubomir I. Ivanov
parent 4ccb70011c
commit 39ed1b657a

View file

@ -1423,7 +1423,7 @@ static void fixup_dc_depths(struct dive *dive, struct divecomputer *dc)
dive->maxdepth.mm = maxdepth;
}
static void fixup_dc_ndl(struct dive *dive, struct divecomputer *dc)
static void fixup_dc_ndl(struct divecomputer *dc)
{
int i;
@ -1654,7 +1654,7 @@ static void fixup_dive_dc(struct dive *dive, struct divecomputer *dc)
fixup_dc_depths(dive, dc);
/* Fix up first sample ndl data */
fixup_dc_ndl(dive, dc);
fixup_dc_ndl(dc);
/* Fix up dive temperatures based on dive computer samples */
fixup_dc_temp(dive, dc);