diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2021-09-20 14:49:42 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2021-09-20 14:49:57 -0700 |
commit | 8525b2e274cc250d7345816423c3ffa0c4e50108 (patch) | |
tree | 2c7a9f6cf6efb72ebd935e1e931940d9e17b5026 | |
parent | 85392343fa393054ddd3446aa38c3be941eb02c5 (diff) | |
download | subsurface-8525b2e274cc250d7345816423c3ffa0c4e50108.tar.gz |
core: remove superfluous arguments
Fixes CID 373231
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 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); |