From 8525b2e274cc250d7345816423c3ffa0c4e50108 Mon Sep 17 00:00:00 2001 From: Dirk Hohndel Date: Mon, 20 Sep 2021 14:49:42 -0700 Subject: [PATCH] core: remove superfluous arguments Fixes CID 373231 Signed-off-by: Dirk Hohndel --- core/libdivecomputer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/libdivecomputer.c b/core/libdivecomputer.c index 0d797b66a..d3c087b9f 100644 --- a/core/libdivecomputer.c +++ b/core/libdivecomputer.c @@ -968,7 +968,7 @@ static void verify_fingerprint(dc_device_t *device, device_data_t *devdata, cons dev_info(devdata, " ... fingerprinted dive %08x:%08x", deviceid, diveid); /* Only use it if we *have* that dive! */ if (!has_dive(deviceid, diveid)) { - dev_info(devdata, " ... dive not found", deviceid, diveid); + dev_info(devdata, " ... dive not found"); return; } dc_device_set_fingerprint(device, buffer, size);