diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2011-10-02 17:47:20 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2011-10-02 22:18:41 -0700 |
commit | f2566ba561ff8eb560e71dd89de5e66e46e7143d (patch) | |
tree | e7d35033cb61283bc5ba7e191d1d3447a2456afb /uemis.c | |
parent | fe0eff8f1ef6f5bd73a0b89d3ac5fc334650c184 (diff) | |
download | subsurface-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.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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) |