diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2021-01-11 16:20:43 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2021-01-20 10:01:50 -0800 |
commit | ad1e57dd67d7e63ead760415377e8780660aa2de (patch) | |
tree | b3c4dcf9bf1d2b56f1ccad8856047e150b359d09 /core/divelist.h | |
parent | 5e1dcb0655fd6daa7914a78a83c5419bfbc93457 (diff) | |
download | subsurface-ad1e57dd67d7e63ead760415377e8780660aa2de.tar.gz |
cleanup: constify init_decompression()
This function initializes decompression data from a dive.
The dive is not modified, therefore make it const.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'core/divelist.h')
-rw-r--r-- | core/divelist.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/divelist.h b/core/divelist.h index 1a19a3e2a..12c897f8c 100644 --- a/core/divelist.h +++ b/core/divelist.h @@ -26,7 +26,7 @@ extern struct dive_table dive_table; extern void sort_dive_table(struct dive_table *table); extern void update_cylinder_related_info(struct dive *); -extern int init_decompression(struct deco_state *ds, struct dive *dive); +extern int init_decompression(struct deco_state *ds, const struct dive *dive); /* divelist core logic functions */ extern void process_loaded_dives(); |