summaryrefslogtreecommitdiffstats
path: root/core/divelist.h
diff options
context:
space:
mode:
authorGravatar Berthold Stoeger <bstoeger@mail.tuwien.ac.at>2017-12-11 22:23:52 +0100
committerGravatar Dirk Hohndel <dirk@hohndel.org>2018-01-04 08:21:43 -0800
commita17d1c7b8510996b77242bfa8c656f90bf5150e1 (patch)
treeffc364a1442d776164fb790bc7b0bc8b76a39a46 /core/divelist.h
parent47bf5cf5e002ada21b03892d5229882db109015f (diff)
downloadsubsurface-a17d1c7b8510996b77242bfa8c656f90bf5150e1.tar.gz
Turn dive_list_changed into bool
All callers of mark_divelist_changed() were passing a bool. Therefore, let mark_divelist_changed() take a bool and make dive_list_changed a bool. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'core/divelist.h')
-rw-r--r--core/divelist.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/divelist.h b/core/divelist.h
index ed648793f..538f4215b 100644
--- a/core/divelist.h
+++ b/core/divelist.h
@@ -12,7 +12,7 @@ extern "C" {
struct dive;
extern void update_cylinder_related_info(struct dive *);
-extern void mark_divelist_changed(int);
+extern void mark_divelist_changed(bool);
extern int unsaved_changes(void);
extern void remove_autogen_trips(void);
extern int init_decompression(struct deco_state *ds, struct dive *dive);