Commit ab85b014 authored by Colin Ian King's avatar Colin Ian King Committed by Daniel Borkmann
Browse files

tools/bpf: fix spelling mistake "memeory" -> "memory"



The CHECK message contains a spelling mistake, fix it.

Signed-off-by: default avatarColin Ian King <colin.king@canonical.com>
Signed-off-by: default avatarDaniel Borkmann <daniel@iogearbox.net>
parent 8d75839b
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -2573,7 +2573,7 @@ static int do_test_file(unsigned int test_num)
	}

	func_info = malloc(info.func_info_cnt * rec_size);
	if (CHECK(!func_info, "out of memeory")) {
	if (CHECK(!func_info, "out of memory")) {
		err = -1;
		goto done;
	}
@@ -3299,7 +3299,7 @@ static int do_test_func_type(int test_num)
	}

	func_info = malloc(info.func_info_cnt * rec_size);
	if (CHECK(!func_info, "out of memeory")) {
	if (CHECK(!func_info, "out of memory")) {
		err = -1;
		goto done;
	}