aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorColin Ian King <colin.king@canonical.com>2018-10-13 11:41:05 -0400
committerShuah Khan (Samsung OSG) <shuah@kernel.org>2018-10-24 16:49:37 -0400
commit717da97e94a9ba590632624992a9f79d53d3579b (patch)
tree28586dab87d17e2dd7d063adf01262a438f70467
parent8c7f6316fccf38ca45d33ed658cc4813837b6294 (diff)
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>
-rw-r--r--tools/testing/selftests/kvm/lib/kvm_util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/testing/selftests/kvm/lib/kvm_util.c b/tools/testing/selftests/kvm/lib/kvm_util.c
index 6fd8c089cafc..a56ef6b187bb 100644
--- a/tools/testing/selftests/kvm/lib/kvm_util.c
+++ b/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)
123 123
124 /* Allocate memory. */ 124 /* Allocate memory. */
125 vm = calloc(1, sizeof(*vm)); 125 vm = calloc(1, sizeof(*vm));
126 TEST_ASSERT(vm != NULL, "Insufficent Memory"); 126 TEST_ASSERT(vm != NULL, "Insufficient Memory");
127 127
128 vm->mode = mode; 128 vm->mode = mode;
129 vm_open(vm, perm); 129 vm_open(vm, perm);