summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Ian King <colin.i.king@gmail.com>2026-03-28 12:33:20 +0000
committerMikulas Patocka <mpatocka@redhat.com>2026-03-30 12:06:08 +0200
commita1cf2bd5b6424ead3d75d09c822f665907094a80 (patch)
treec106f42e2278761ece745f4c042b2580fd686b66
parent33eded29319d41fcba5d0257b126a48b449aad47 (diff)
dm vdo: Fix spelling mistake "postive" -> "positive"
There is a spelling mistake in a vdo_log_error message. Fix it. Signed-off-by: Colin Ian King <colin.i.king@gmail.com> Signed-off-by: Mikulas Patocka <mpatocka@redhat.com>
-rw-r--r--drivers/md/dm-vdo/dm-vdo-target.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/md/dm-vdo/dm-vdo-target.c b/drivers/md/dm-vdo/dm-vdo-target.c
index 0135a6f941fd..1d8375cc3c3e 100644
--- a/drivers/md/dm-vdo/dm-vdo-target.c
+++ b/drivers/md/dm-vdo/dm-vdo-target.c
@@ -412,7 +412,7 @@ static int __must_check parse_memory(const char *memory_str,
result = kstrtouint(memory_str, 10, &value);
if (result) {
- vdo_log_error("optional parameter error: invalid memory size, must be a postive integer");
+ vdo_log_error("optional parameter error: invalid memory size, must be a positive integer");
return -EINVAL;
}