Cleanup: use add_to_dive_table() in record_dive_to_table()

This was reimplementing functionality that was already there.
Simply call the already existing function.

Thus, we don't have to export the grow_dive_table function.

Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
This commit is contained in:
Berthold Stoeger 2019-06-04 21:25:42 +02:00 committed by Dirk Hohndel
parent 3df32044ee
commit d129085b59
3 changed files with 2 additions and 8 deletions

View file

@ -31,7 +31,6 @@ extern void process_imported_dives(struct dive_table *import_table, struct trip_
struct trip_table *trips_to_add, struct dive_site_table *sites_to_add);
extern char *get_dive_gas_string(const struct dive *dive);
extern struct dive **grow_dive_table(struct dive_table *table);
extern int dive_table_get_insertion_index(struct dive_table *table, struct dive *dive);
extern void add_to_dive_table(struct dive_table *table, int idx, struct dive *dive);
extern void append_dive(struct dive *dive);