diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2018-10-23 19:11:13 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2018-10-29 00:09:31 +0000 |
commit | f527a70831a37e736431baa5705c9d188fc12f4b (patch) | |
tree | 5260e51c944b193175b9e318457bb281ee760fdf /core/divesite.h | |
parent | 8de471f90e95a5a75d0fec78d5bbf900eb90f235 (diff) | |
download | subsurface-f527a70831a37e736431baa5705c9d188fc12f4b.tar.gz |
Dive site: pass dive-site pointer to delete_dive_site()
Instead of passing a uuid, pass a pointer to the dive site.
This is small step in an effort to remove uuids.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'core/divesite.h')
-rw-r--r-- | core/divesite.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/divesite.h b/core/divesite.h index 2d5c02110..7ea7c53cc 100644 --- a/core/divesite.h +++ b/core/divesite.h @@ -57,7 +57,7 @@ struct dive_site *alloc_or_get_dive_site(uint32_t uuid); int nr_of_dives_at_dive_site(struct dive_site *ds, bool select_only); bool is_dive_site_used(struct dive_site *ds, bool select_only); void free_dive_site(struct dive_site *ds); -void delete_dive_site(uint32_t id); +void delete_dive_site(struct dive_site *ds); struct dive_site *create_dive_site(const char *name, timestamp_t divetime); struct dive_site *create_dive_site_from_current_dive(const char *name); struct dive_site *create_dive_site_with_gps(const char *name, const location_t *, timestamp_t divetime); |