Przeglądaj źródła

kvm: selftests: fix spelling mistake "Insufficent" -> "Insufficient"

Trivial fix to spelling mistake in TEST_ASSERT message text

Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Shuah Khan (Samsung OSG) <shuah@kernel.org>
Colin Ian King 6 lat temu
rodzic
commit
717da97e94
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      tools/testing/selftests/kvm/lib/kvm_util.c

+ 1 - 1
tools/testing/selftests/kvm/lib/kvm_util.c

@@ -123,7 +123,7 @@ struct kvm_vm *vm_create(enum vm_guest_mode mode, uint64_t phy_pages, int perm)
 
 	/* Allocate memory. */
 	vm = calloc(1, sizeof(*vm));
-	TEST_ASSERT(vm != NULL, "Insufficent Memory");
+	TEST_ASSERT(vm != NULL, "Insufficient Memory");
 
 	vm->mode = mode;
 	vm_open(vm, perm);