[PATCH][next] KVM: selftests: Fix spelling mistake "Unabled" -> "Unable"

Colin Ian King posted 1 patch 10 months, 1 week ago
tools/testing/selftests/kvm/lib/kvm_util.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[PATCH][next] KVM: selftests: Fix spelling mistake "Unabled" -> "Unable"
Posted by Colin Ian King 10 months, 1 week ago
There is a spelling mistake in a TEST_FAIL message. Fix it.

Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
---
 tools/testing/selftests/kvm/lib/kvm_util.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/testing/selftests/kvm/lib/kvm_util.c b/tools/testing/selftests/kvm/lib/kvm_util.c
index b1c3c7260902..279ad8946040 100644
--- a/tools/testing/selftests/kvm/lib/kvm_util.c
+++ b/tools/testing/selftests/kvm/lib/kvm_util.c
@@ -2283,7 +2283,7 @@ void kvm_get_stat(struct kvm_binary_stats *stats, const char *name,
 		return;
 	}
 
-	TEST_FAIL("Unabled to find stat '%s'", name);
+	TEST_FAIL("Unable to find stat '%s'", name);
 }
 
 __weak void kvm_arch_vm_post_create(struct kvm_vm *vm)
-- 
2.47.2
Re: [PATCH][next] KVM: selftests: Fix spelling mistake "Unabled" -> "Unable"
Posted by Sean Christopherson 10 months, 1 week ago
On Fri, Feb 14, 2025, Colin Ian King wrote:
> There is a spelling mistake in a TEST_FAIL message. Fix it.

Gah, as usual, your spell checker is superior to mine.  Squashed the fix with
offending commit.

Thanks!