1
0
Fork 0

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>
hifive-unleashed-5.1
Colin Ian King 2018-10-13 16:41:05 +01:00 committed by Shuah Khan (Samsung OSG)
parent 8c7f6316fc
commit 717da97e94
1 changed files with 1 additions and 1 deletions

View File

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