mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
First steps towards integrating SDA files into the default XML loading
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
fe0eff8f1e
commit
f2566ba561
3 changed files with 6 additions and 2 deletions
4
uemis.c
4
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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue