From eb7fd49e837bd107c230eb5e7fe2ee64ee56f85e Mon Sep 17 00:00:00 2001 From: =?utf8?q?Thomas=20Wei=C3=9Fschuh?= Date: Sat, 30 Mar 2024 12:48:10 +0100 Subject: [PATCH] libblkid: use correct logging prefix for checksum mismatch MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Thomas Weißschuh --- libblkid/src/probe.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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)); } -- 2.47.2