summaryrefslogtreecommitdiffstats
path: root/parse-xml.c
diff options
context:
space:
mode:
authorGravatar Linus Torvalds <torvalds@linux-foundation.org>2014-03-09 12:19:41 -0700
committerGravatar Dirk Hohndel <dirk@hohndel.org>2014-03-09 19:36:35 -0700
commit5fcb36f5a83a0eb1a45553f8d1c6d1e0e2fb41af (patch)
treedc9c171d29cb8092fd6926adde0d6d69a1c1b5ba /parse-xml.c
parent719656b438c0574b4a98c5cda1ad742849312733 (diff)
downloadsubsurface-5fcb36f5a83a0eb1a45553f8d1c6d1e0e2fb41af.tar.gz
Parse basic trip and dive data from the git blobs
Some things are still missing: samples and events, and cylinder and weightsystem information. But most of the basics are there (although the lack of sample data makes a big visual impact) Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'parse-xml.c')
-rw-r--r--parse-xml.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/parse-xml.c b/parse-xml.c
index 2cfa1dc1b..a2c73d31c 100644
--- a/parse-xml.c
+++ b/parse-xml.c
@@ -999,7 +999,7 @@ static int uddf_dive_match(struct dive *dive, const char *name, char *buf)
* We don't do exponentials etc, if somebody does
* gps locations in that format, they are insane.
*/
-static degrees_t parse_degrees(char *buf, char **end)
+degrees_t parse_degrees(char *buf, char **end)
{
int sign = 1, decimals = 6, value = 0;
degrees_t ret;