summaryrefslogtreecommitdiffstats
path: root/uemis.c
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2011-10-02 17:47:20 -0700
committerGravatar Dirk Hohndel <dirk@hohndel.org>2011-10-02 22:18:41 -0700
commitf2566ba561ff8eb560e71dd89de5e66e46e7143d (patch)
treee7d35033cb61283bc5ba7e191d1d3447a2456afb /uemis.c
parentfe0eff8f1ef6f5bd73a0b89d3ac5fc334650c184 (diff)
downloadsubsurface-f2566ba561ff8eb560e71dd89de5e66e46e7143d.tar.gz
First steps towards integrating SDA files into the default XML loading
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'uemis.c')
-rw-r--r--uemis.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/uemis.c b/uemis.c
index 25d1b8ab7..259d30c53 100644
--- a/uemis.c
+++ b/uemis.c
@@ -180,7 +180,7 @@ bail:
/*
* parse uemis base64 data blob into struct dive
*/
-static void parse_divelog_binary(char *base64, struct dive **divep) {
+void uemis_parse_divelog_binary(char *base64, struct dive **divep) {
int datalen;
int i;
uint8_t *data;
@@ -271,7 +271,7 @@ parse_uemis_file(char *divelogfilename) {
/* some error handling */
goto bail;
}
- parse_divelog_binary(found,&dive);
+ uemis_parse_divelog_binary(found,&dive);
record_dive(dive);
bail:
if (found)