diff options
Diffstat (limited to 'core')
-rw-r--r-- | core/libdivecomputer.c | 2 | ||||
-rw-r--r-- | core/uemis-downloader.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/core/libdivecomputer.c b/core/libdivecomputer.c index 9fbac0459..57264aa83 100644 --- a/core/libdivecomputer.c +++ b/core/libdivecomputer.c @@ -603,7 +603,7 @@ static void parse_string_field(struct dive *dive, dc_field_string_t *str) } #endif -static dc_status_t libdc_header_parser(dc_parser_t *parser, dc_user_device_t *devdata, struct dive *dive) +static dc_status_t libdc_header_parser(dc_parser_t *parser, device_data_t *devdata, struct dive *dive) { dc_status_t rc = 0; dc_datetime_t dt = { 0 }; diff --git a/core/uemis-downloader.c b/core/uemis-downloader.c index 7c91f985a..023ac8eaa 100644 --- a/core/uemis-downloader.c +++ b/core/uemis-downloader.c @@ -1120,7 +1120,7 @@ static void get_uemis_divespot(const char *mountpath, int divespot_id, struct di } } -static bool get_matching_dive(int idx, char *newmax, int *uemis_mem_status, dc_user_device_t *data, const char *mountpath, const char deviceidnr) +static bool get_matching_dive(int idx, char *newmax, int *uemis_mem_status, device_data_t *data, const char *mountpath, const char deviceidnr) { struct dive *dive = data->download_table->dives[idx]; char log_file_no_to_find[20]; |