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>
This commit is contained in:
Colin Ian King
2026-03-28 12:33:20 +00:00
committed by Mikulas Patocka
parent 33eded2931
commit a1cf2bd5b6

View File

@@ -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;
}