diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2019-02-26 20:57:48 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2019-02-28 07:27:10 -0800 |
commit | 9c87c0dafd5d9946261787bcbb2e6311b5e5f444 (patch) | |
tree | 8e464682f5e98d1443ba31d4fe59aa3901518914 /core/dive.h | |
parent | 0893f87beb943ed8f5872aef18274f456b0c51ca (diff) | |
download | subsurface-9c87c0dafd5d9946261787bcbb2e6311b5e5f444.tar.gz |
Cleanup: make dive_set_geodata_from_picture() local to dive.c
The function dive_set_geodata_from_picture() is only used in
dive.c. Make it local to that translation unit.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'core/dive.h')
-rw-r--r-- | core/dive.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/core/dive.h b/core/dive.h index b13d16e57..fc14a7661 100644 --- a/core/dive.h +++ b/core/dive.h @@ -378,7 +378,6 @@ extern void dive_add_picture(struct dive *d, struct picture *newpic); extern bool dive_remove_picture(struct dive *d, const char *filename); extern unsigned int dive_get_picture_count(struct dive *d); extern bool picture_check_valid_time(timestamp_t timestamp, int shift_time); -extern void dive_set_geodata_from_picture(struct dive *d, struct picture *pic); extern void picture_free(struct picture *picture); extern bool has_gaschange_event(const struct dive *dive, const struct divecomputer *dc, int idx); |