mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-30 22:20:21 +00:00
Capitalize GPS in string
Signed-off-by: Miika Turkia <miika.turkia@gmail.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
bf1300e5b5
commit
6b7e2d2414
1 changed files with 1 additions and 1 deletions
|
@ -186,7 +186,7 @@ static void parse_dive_gps(char *line, struct membuffer *str, void *_dive)
|
|||
(ds->latitude.udeg != latitude.udeg || ds->longitude.udeg != longitude.udeg)) {
|
||||
const char *coords = printGPSCoords(latitude.udeg, longitude.udeg);
|
||||
// we have a dive site that already has GPS coordinates
|
||||
ds->notes = add_to_string(ds->notes, translate("gettextFromC", "multiple gps locations for this dive site; also %s\n"), coords);
|
||||
ds->notes = add_to_string(ds->notes, translate("gettextFromC", "multiple GPS locations for this dive site; also %s\n"), coords);
|
||||
free((void *)coords);
|
||||
}
|
||||
ds->latitude = latitude;
|
||||
|
|
Loading…
Reference in a new issue