mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
Uemis downloader: don't use unknown type u_int32_t
Signed-off-by: Lubomir I. Ivanov <neolit123@gmail.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
e4c0f3f3e2
commit
bb4e34003c
1 changed files with 1 additions and 1 deletions
|
@ -133,7 +133,7 @@ static struct dive *uemis_start_dive(uint32_t deviceid)
|
|||
return dive;
|
||||
}
|
||||
|
||||
static struct dive *get_dive_by_uemis_diveid(device_data_t *devdata, u_int32_t object_id)
|
||||
static struct dive *get_dive_by_uemis_diveid(device_data_t *devdata, uint32_t object_id)
|
||||
{
|
||||
for (int i = 0; i < devdata->download_table->nr; i++) {
|
||||
if (object_id == devdata->download_table->dives[i]->dc.diveid)
|
||||
|
|
Loading…
Reference in a new issue