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:
Lubomir I. Ivanov 2015-09-08 20:04:41 +03:00 committed by Dirk Hohndel
parent e4c0f3f3e2
commit bb4e34003c

View file

@ -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)