Commit 2deb70d3 authored by Ssuhung Yeh's avatar Ssuhung Yeh Committed by Mikulas Patocka
Browse files

dm: Fix typo in error message



Remove the redundant "i" at the beginning of the error message. This "i"
came from commit 1c131886 ("dm: prefer
'"%s...", __func__'"), the "i" is accidentally left.

Signed-off-by: default avatarSsuhung Yeh <ssuhung@gmail.com>
Signed-off-by: default avatarMikulas Patocka <mpatocka@redhat.com>
Fixes: 1c131886 ("dm: prefer '"%s...", __func__'")
Cc: stable@vger.kernel.org	# v6.3+
parent 51f0659f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -51,7 +51,7 @@ static int index_check(const struct dm_block_validator *v,
					       block_size - sizeof(__le32),
					       INDEX_CSUM_XOR));
	if (csum_disk != mi_le->csum) {
		DMERR_LIMIT("i%s failed: csum %u != wanted %u", __func__,
		DMERR_LIMIT("%s failed: csum %u != wanted %u", __func__,
			    le32_to_cpu(csum_disk), le32_to_cpu(mi_le->csum));
		return -EILSEQ;
	}