summaryrefslogtreecommitdiffstats
path: root/parse-xml.c
diff options
context:
space:
mode:
authorGravatar Paul-Erik Törrönen <poltsi@777-team.org>2015-05-16 00:27:08 +0300
committerGravatar Dirk Hohndel <dirk@hohndel.org>2015-05-21 16:05:09 -0700
commitcfa54031928e901f56fd2c6b90047833d5a59c02 (patch)
tree50a4c00cd291540899a317459219a2c83d6887d6 /parse-xml.c
parent00b1469658fc43ec6448cd01e59405bfeeef40cb (diff)
downloadsubsurface-cfa54031928e901f56fd2c6b90047833d5a59c02.tar.gz
Fix typo
Loockup -> Lookup Signed-off-by: Paul-Erik Törrönen <poltsi@777-team.org> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'parse-xml.c')
-rw-r--r--parse-xml.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/parse-xml.c b/parse-xml.c
index c5ed21a54..51d23ec10 100644
--- a/parse-xml.c
+++ b/parse-xml.c
@@ -1167,7 +1167,7 @@ static void gps_location(char *buffer, struct dive_site *ds)
/* this is in qthelper.cpp, so including the .h file is a pain */
extern const char *printGPSCoords(int lat, int lon);
-extern void add_geo_information_for_loockup(degrees_t latitude, degrees_t longitude, uint32_t uuid);
+extern void add_geo_information_for_lookup(degrees_t latitude, degrees_t longitude, uint32_t uuid);
static void gps_in_dive(char *buffer, struct dive *dive)
{
@@ -1206,7 +1206,7 @@ static void gps_in_dive(char *buffer, struct dive *dive)
}
}
if (ds && (!ds->notes || strstr(ds->notes, "countrytag:") == NULL))
- add_geo_information_for_loockup(latitude, longitude, dive->dive_site_uuid);
+ add_geo_information_for_lookup(latitude, longitude, dive->dive_site_uuid);
}
static void add_dive_site(char *buffer, struct dive *dive)