mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-30 22:20:21 +00:00
Cleanup: remove unused parameter
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
4ccb70011c
commit
39ed1b657a
1 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue