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

The CHECK message contains a spelling mistake, fix it.

Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
This commit is contained in:
Colin Ian King 2018-11-22 10:13:45 +00:00 committed by Daniel Borkmann
parent 8d75839b84
commit ab85b01434
1 changed files with 2 additions and 2 deletions

View File

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