summaryrefslogtreecommitdiffstats
path: root/load-git.c
diff options
context:
space:
mode:
authorGravatar Miika Turkia <miika.turkia@gmail.com>2015-09-18 17:23:10 +0300
committerGravatar Dirk Hohndel <dirk@hohndel.org>2015-09-18 10:07:58 -0700
commit6b7e2d2414141c9f7cbcba6c349b35576a9e523c (patch)
tree06075a16160300920c4e8a12b057ea46590690b6 /load-git.c
parentbf1300e5b5728930bc37e2d8880383a770abc41a (diff)
downloadsubsurface-6b7e2d2414141c9f7cbcba6c349b35576a9e523c.tar.gz
Capitalize GPS in string
Signed-off-by: Miika Turkia <miika.turkia@gmail.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'load-git.c')
-rw-r--r--load-git.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/load-git.c b/load-git.c
index aa0ef8c2b..5b5b13bf6 100644
--- a/load-git.c
+++ b/load-git.c
@@ -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;