cleanup: constify time_during_dive_with_offset() function

There is no reason to pass a non-const dive pointer as first
argument.

Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
This commit is contained in:
Berthold Stoeger 2020-05-22 22:14:24 +02:00 committed by Dirk Hohndel
parent 9365061e27
commit 87c91af824
2 changed files with 2 additions and 2 deletions

View file

@ -3394,7 +3394,7 @@ timestamp_t dive_endtime(const struct dive *dive)
return dive->when + dive_totaltime(dive);
}
bool time_during_dive_with_offset(struct dive *dive, timestamp_t when, timestamp_t offset)
bool time_during_dive_with_offset(const struct dive *dive, timestamp_t when, timestamp_t offset)
{
timestamp_t start = dive->when;
timestamp_t end = dive_endtime(dive);

View file

@ -272,7 +272,7 @@ extern bool dive_site_has_gps_location(const struct dive_site *ds);
extern int dive_has_gps_location(const struct dive *dive);
extern location_t dive_get_gps_location(const struct dive *d);
extern bool time_during_dive_with_offset(struct dive *dive, timestamp_t when, timestamp_t offset);
extern bool time_during_dive_with_offset(const struct dive *dive, timestamp_t when, timestamp_t offset);
/* Check if two dive computer entries are the exact same dive (-1=no/0=maybe/1=yes) */
extern int match_one_dc(const struct divecomputer *a, const struct divecomputer *b);