mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Core: remove variable name conflict
Having a parameter with the same name as a global variable is potentially confusing. Found via LGTM.com Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
6a6c62ecf5
commit
8bbc375fab
3 changed files with 19 additions and 19 deletions
|
@ -410,8 +410,8 @@ extern void add_dive_to_trip(struct dive *, dive_trip_t *);
|
|||
struct dive *unregister_dive(int idx);
|
||||
extern void delete_single_dive(int idx);
|
||||
|
||||
extern void insert_trip(dive_trip_t *trip, struct trip_table *trip_table);
|
||||
extern void unregister_trip(dive_trip_t *trip, struct trip_table *trip_table);
|
||||
extern void insert_trip(dive_trip_t *trip, struct trip_table *trip_table_arg);
|
||||
extern void unregister_trip(dive_trip_t *trip, struct trip_table *trip_table_arg);
|
||||
extern void free_trip(dive_trip_t *trip);
|
||||
extern timestamp_t trip_date(const struct dive_trip *trip);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue