diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2018-12-23 10:08:44 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2018-12-23 20:00:45 +0100 |
commit | 99d29a7838b9f0d9a55885924ba4a614e9cdc7ff (patch) | |
tree | 992a1d7ece18ac020310376ff275c47704b64c36 /core/divelist.h | |
parent | 95736506fe10fdc4fb5facaf2bd2dac5c4b179da (diff) | |
download | subsurface-99d29a7838b9f0d9a55885924ba4a614e9cdc7ff.tar.gz |
Cleanup: remove unused parameter was_autogen
In commit 6bf4120dbbf7be1b9267e0e86f3948b77870ea71 the trip-flags
were replaced by a simple boolean. This made the was_autogen
parameter to the remove_dive_from_trip() and unregister_dive_from_trip()
functions unused. Remove these parameters.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'core/divelist.h')
-rw-r--r-- | core/divelist.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/divelist.h b/core/divelist.h index ce4943660..d926886b6 100644 --- a/core/divelist.h +++ b/core/divelist.h @@ -28,8 +28,8 @@ extern void add_single_dive(int idx, struct dive *dive); extern void get_dive_gas(const struct dive *dive, int *o2_p, int *he_p, int *o2low_p); extern int get_divenr(const struct dive *dive); extern int get_divesite_idx(const struct dive_site *ds); -extern struct dive_trip *unregister_dive_from_trip(struct dive *dive, short was_autogen); -extern void remove_dive_from_trip(struct dive *dive, short was_autogen); +extern struct dive_trip *unregister_dive_from_trip(struct dive *dive); +extern void remove_dive_from_trip(struct dive *dive); extern dive_trip_t *alloc_trip(void); extern dive_trip_t *create_trip_from_dive(struct dive *dive); extern dive_trip_t *create_and_hookup_trip_from_dive(struct dive *dive); |