diff options
Diffstat (limited to 'core/divesite.c')
-rw-r--r-- | core/divesite.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/divesite.c b/core/divesite.c index 56521bd71..889c94572 100644 --- a/core/divesite.c +++ b/core/divesite.c @@ -239,9 +239,9 @@ uint32_t create_dive_site_with_gps(const char *name, degrees_t latitude, degrees /* a uuid is always present - but if all the other fields are empty, the dive site is pointless */ bool dive_site_is_empty(struct dive_site *ds) { - return same_string(ds->name, "") && - same_string(ds->description, "") && - same_string(ds->notes, "") && + return empty_string(ds->name) && + empty_string(ds->description) && + empty_string(ds->notes) && ds->latitude.udeg == 0 && ds->longitude.udeg == 0; } |