summaryrefslogtreecommitdiffstats
path: root/core/dive.h
diff options
context:
space:
mode:
authorGravatar Berthold Stoeger <bstoeger@mail.tuwien.ac.at>2019-09-22 21:44:16 +0200
committerGravatar Dirk Hohndel <dirk@hohndel.org>2019-10-02 08:04:49 -0700
commita353bcb2961b5c9104097ecf57eeeda4b9e37a9f (patch)
tree10399730264c5e596baf937ea7814e6a02f765c1 /core/dive.h
parenta1a2492438ab3e5521cd754cc4a1763b216034e5 (diff)
downloadsubsurface-a353bcb2961b5c9104097ecf57eeeda4b9e37a9f.tar.gz
Cleanup: make table argument to get_dive_from_table() const
Even though the returned dive is not const, the table is not changed, as it only contains pointers. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'core/dive.h')
-rw-r--r--core/dive.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/dive.h b/core/dive.h
index d3101cc83..5f525c013 100644
--- a/core/dive.h
+++ b/core/dive.h
@@ -255,7 +255,7 @@ extern struct dive *current_dive;
#define displayed_dc (get_dive_dc(&displayed_dive, dc_number))
extern struct dive *get_dive(int nr);
-extern struct dive *get_dive_from_table(int nr, struct dive_table *dt);
+extern struct dive *get_dive_from_table(int nr, const struct dive_table *dt);
extern struct dive_site *get_dive_site_for_dive(const struct dive *dive);
extern const char *get_dive_country(const struct dive *dive);
extern const char *get_dive_location(const struct dive *dive);