diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2020-10-16 17:01:02 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2020-10-16 21:32:43 -0700 |
commit | 3d7b2a2d7cd9999c595020d23a94f972f1e8147d (patch) | |
tree | 0a1b9ccffc7e2ac4afe566b2a19f2d79466450e9 | |
parent | 6b7d7f9ee121ede4eb830951d994d66ba35ae833 (diff) | |
download | subsurface-3d7b2a2d7cd9999c595020d23a94f972f1e8147d.tar.gz |
cleanup: use correct printf format
This fixes a warning from the CodeQL scan.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
-rw-r--r-- | core/libdivecomputer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/libdivecomputer.c b/core/libdivecomputer.c index f824ed153..6f8f4bee9 100644 --- a/core/libdivecomputer.c +++ b/core/libdivecomputer.c @@ -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); } |