diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2019-03-17 13:52:45 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2019-03-17 15:11:31 -0700 |
commit | 8bbc375fab7f2e34f1877126298209d7d1b04da0 (patch) | |
tree | f16b919e048d4ecfadb718c09dac8aa227645cf6 /core/divelist.c | |
parent | 6a6c62ecf5f007533f85ecb029a0c57168ec926c (diff) | |
download | subsurface-8bbc375fab7f2e34f1877126298209d7d1b04da0.tar.gz |
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>
Diffstat (limited to 'core/divelist.c')
-rw-r--r-- | core/divelist.c | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/core/divelist.c b/core/divelist.c index e59e920c8..9f9ab8140 100644 --- a/core/divelist.c +++ b/core/divelist.c @@ -939,17 +939,17 @@ struct dive_trip *unregister_dive_from_trip(struct dive *dive) return trip; } -static void delete_trip(dive_trip_t *trip, struct trip_table *trip_table) +static void delete_trip(dive_trip_t *trip, struct trip_table *trip_table_arg) { - unregister_trip(trip, trip_table); + unregister_trip(trip, trip_table_arg); free_trip(trip); } -void remove_dive_from_trip(struct dive *dive, struct trip_table *trip_table) +void remove_dive_from_trip(struct dive *dive, struct trip_table *trip_table_arg) { struct dive_trip *trip = unregister_dive_from_trip(dive); if (trip && trip->dives.nr == 0) - delete_trip(trip, trip_table); + delete_trip(trip, trip_table_arg); } /* Add dive to a trip. Caller is responsible for removing dive @@ -972,10 +972,10 @@ dive_trip_t *alloc_trip(void) } /* insert the trip into the trip table */ -void insert_trip(dive_trip_t *dive_trip, struct trip_table *trip_table) +void insert_trip(dive_trip_t *dive_trip, struct trip_table *trip_table_arg) { - int idx = trip_table_get_insertion_index(trip_table, dive_trip); - add_to_trip_table(trip_table, idx, dive_trip); + int idx = trip_table_get_insertion_index(trip_table_arg, dive_trip); + add_to_trip_table(trip_table_arg, idx, dive_trip); #ifdef DEBUG_TRIP dump_trip_list(); #endif @@ -991,25 +991,25 @@ dive_trip_t *create_trip_from_dive(struct dive *dive) return trip; } -dive_trip_t *create_and_hookup_trip_from_dive(struct dive *dive, struct trip_table *trip_table) +dive_trip_t *create_and_hookup_trip_from_dive(struct dive *dive, struct trip_table *trip_table_arg) { dive_trip_t *dive_trip = alloc_trip(); dive_trip = create_trip_from_dive(dive); add_dive_to_trip(dive, dive_trip); - insert_trip(dive_trip, trip_table); + insert_trip(dive_trip, trip_table_arg); return dive_trip; } /* remove trip from the trip-list, but don't free its memory. * caller takes ownership of the trip. */ -void unregister_trip(dive_trip_t *trip, struct trip_table *trip_table) +void unregister_trip(dive_trip_t *trip, struct trip_table *trip_table_arg) { - int idx = get_idx_in_trip_table(trip_table, trip); + int idx = get_idx_in_trip_table(trip_table_arg, trip); assert(!trip->dives.nr); if (idx >= 0) - remove_from_trip_table(trip_table, idx); + remove_from_trip_table(trip_table_arg, idx); } /* @@ -1111,7 +1111,7 @@ dive_trip_t *get_dives_to_autogroup(struct dive_table *table, int start, int *fr * Walk the dives from the oldest dive in the given table, and see if we * can autogroup them. But only do this when the user selected autogrouping. */ -static void autogroup_dives(struct dive_table *table, struct trip_table *trip_table) +static void autogroup_dives(struct dive_table *table, struct trip_table *trip_table_arg) { int from, to; dive_trip_t *trip; @@ -1126,9 +1126,9 @@ static void autogroup_dives(struct dive_table *table, struct trip_table *trip_ta add_dive_to_trip(table->dives[j], trip); /* If this was newly allocated, add trip to list */ if (alloc) - insert_trip(trip, trip_table); + insert_trip(trip, trip_table_arg); } - sort_trip_table(trip_table); + sort_trip_table(trip_table_arg); #ifdef DEBUG_TRIP dump_trip_list(); #endif |