Commit 717da97e authored by Colin Ian King's avatar Colin Ian King Committed by Shuah Khan (Samsung OSG)
Browse files

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



Trivial fix to spelling mistake in TEST_ASSERT message text

Signed-off-by: default avatarColin Ian King <colin.king@canonical.com>
Signed-off-by: default avatarShuah Khan (Samsung OSG) <shuah@kernel.org>
parent 8c7f6316
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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);