From: Thomas Weißschuh Date: Sat, 30 Mar 2024 11:48:10 +0000 (+0100) Subject: libblkid: use correct logging prefix for checksum mismatch X-Git-Tag: v2.42-start~464^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=eb7fd49e837bd107c230eb5e7fe2ee64ee56f85e;p=thirdparty%2Futil-linux.git libblkid: use correct logging prefix for checksum mismatch Signed-off-by: Thomas Weißschuh --- diff --git a/libblkid/src/probe.c b/libblkid/src/probe.c index 76905e197..47df0a93b 100644 --- a/libblkid/src/probe.c +++ b/libblkid/src/probe.c @@ -1976,11 +1976,11 @@ static void blkid_probe_log_csum_mismatch(blkid_probe pr, size_t n, const void * sprintf(&expected_hex[i], "%02X", ((const unsigned char *) expected)[i / 2]); } - ul_debug( + DBG(LOWPROBE, ul_debug( "incorrect checksum for type %s," " got %*s, expected %*s", blkid_probe_get_probername(pr), - hex_size, csum_hex, hex_size, expected_hex); + hex_size, csum_hex, hex_size, expected_hex)); }