]> git.ipfire.org Git - thirdparty/util-linux.git/commitdiff
libblkid: use correct logging prefix for checksum mismatch
authorThomas Weißschuh <thomas@t-8ch.de>
Sat, 30 Mar 2024 11:48:10 +0000 (12:48 +0100)
committerThomas Weißschuh <thomas@t-8ch.de>
Sat, 30 Mar 2024 11:48:10 +0000 (12:48 +0100)
Signed-off-by: Thomas Weißschuh <thomas@t-8ch.de>
libblkid/src/probe.c

index 76905e1970fbbd4270190c2515611a6714fdc5fe..47df0a93bcd208270ee8f1510a3030f14805919b 100644 (file)
@@ -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));
 }