diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2015-02-12 12:28:54 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-02-12 12:31:10 -0800 |
commit | 0ce215e0d90e8d7612917b75f73bb703b9ada9ae (patch) | |
tree | a6c844f8a635080cc972993df3a4a8c56a19e1f1 /divesite.h | |
parent | a6336d13b302d071bc94cc15b4a865f0ba2492f7 (diff) | |
download | subsurface-0ce215e0d90e8d7612917b75f73bb703b9ada9ae.tar.gz |
Fix dive site creation from v2 git storage
Clearly didn't test that part well enough.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'divesite.h')
-rw-r--r-- | divesite.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/divesite.h b/divesite.h index b3487c341..f0cf08067 100644 --- a/divesite.h +++ b/divesite.h @@ -60,6 +60,7 @@ struct dive_site *alloc_dive_site(); uint32_t create_dive_site(const char *name); uint32_t create_dive_site_with_gps(const char *name, degrees_t latitude, degrees_t longitude); uint32_t dive_site_uuid_by_name(const char *name); +struct dive_site *get_or_create_dive_site_by_uuid(uint32_t uuid); #ifdef __cplusplus } |