mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Remove redundant function
We had two functions doing exactly the same thing. Let's drop the one with the highly confusing name. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
42afb4972a
commit
9edb7811ef
2 changed files with 2 additions and 9 deletions
7
dive.h
7
dive.h
|
@ -494,13 +494,6 @@ extern unsigned int dc_number;
|
|||
#define current_dive (get_dive(selected_dive))
|
||||
#define current_dc (get_dive_dc(current_dive, dc_number))
|
||||
|
||||
static inline struct dive *get_gps_location(int nr, struct dive_table *table)
|
||||
{
|
||||
if (nr >= table->nr || nr < 0)
|
||||
return NULL;
|
||||
return table->dives[nr];
|
||||
}
|
||||
|
||||
static inline struct dive *get_dive(int nr)
|
||||
{
|
||||
if (nr >= dive_table.nr || nr < 0)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue