cleanup: use correct printf format

This fixes a warning from the CodeQL scan.

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Dirk Hohndel 2020-10-16 17:01:02 -07:00
parent 6b7d7f9ee1
commit 3d7b2a2d7c

View file

@ -1354,7 +1354,7 @@ static dc_status_t bluetooth_device_open(dc_iostream_t **iostream, dc_context_t
return DC_STATUS_NODEVICE;
}
dev_info(data, "Opening rfcomm address %u", address);
dev_info(data, "Opening rfcomm address %llu", address);
return dc_bluetooth_open(&data->iostream, context, address, 0);
}