]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
kvm: selftests: fix spelling mistake "Insufficent" -> "Insufficient"
authorColin Ian King <colin.king@canonical.com>
Sat, 13 Oct 2018 15:41:05 +0000 (16:41 +0100)
committerShuah Khan (Samsung OSG) <shuah@kernel.org>
Wed, 24 Oct 2018 20:49:37 +0000 (14:49 -0600)
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>
tools/testing/selftests/kvm/lib/kvm_util.c

index 6fd8c089cafcdea41434fadc60512b96d4a90f5d..a56ef6b187bb73865840465eb439ed7325034520 100644 (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);