diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2020-02-06 22:56:10 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2020-02-09 12:13:18 -0800 |
commit | 8391d926c7355a0ff637c2b604e259d0d25c3cb2 (patch) | |
tree | 36cb3cfe14ef1d688ed39b568a3d35dbe8659971 /core/save-profiledata.c | |
parent | ee839bf68618fc27f96b04291912c8af09e944b2 (diff) | |
download | subsurface-8391d926c7355a0ff637c2b604e259d0d25c3cb2.tar.gz |
Cleanup: remove const bool parameters and return types
These just make no sense. Since the value is copied, it
has no meaning to the caller whether the function can
change the value (and vice versa for return types).
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'core/save-profiledata.c')
-rw-r--r-- | core/save-profiledata.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/save-profiledata.c b/core/save-profiledata.c index 87047a34a..696dc7016 100644 --- a/core/save-profiledata.c +++ b/core/save-profiledata.c @@ -239,7 +239,7 @@ void save_subtitles_buffer(struct membuffer *b, struct dive *dive, int offset, i free_plot_info_data(&pi); } -int save_profiledata(const char *filename, const bool select_only) +int save_profiledata(const char *filename, bool select_only) { struct membuffer buf = { 0 }; FILE *f; |