diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2019-07-25 07:25:54 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2019-08-04 16:22:19 -0700 |
commit | ba4d6ae62707d20fef8d33ceab3f2de5be3e9ae7 (patch) | |
tree | 9a735267330238ffd0b7a551a160db9aa3b045ca /core/divelist.c | |
parent | 891d21b34eda04a362e0a6645a8dd8d2f8995837 (diff) | |
download | subsurface-ba4d6ae62707d20fef8d33ceab3f2de5be3e9ae7.tar.gz |
Cleanup: use clear_git_id() instead of setting saved_git_id
For better encapsulation, use clear_git_id() in clear_dive_file_data()
instead of setting saved_git_id directly.
Thus, memory management of the saved_git_id value is encapsulated
and can be modified more easily.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'core/divelist.c')
-rw-r--r-- | core/divelist.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/divelist.c b/core/divelist.c index f088195fd..02e5cfc4a 100644 --- a/core/divelist.c +++ b/core/divelist.c @@ -1488,7 +1488,7 @@ void clear_dive_file_data() clear_dive(&displayed_dive); reset_min_datafile_version(); - saved_git_id = ""; + clear_git_id(); } bool dive_less_than(const struct dive *a, const struct dive *b) |