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

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
...@@ -2573,7 +2573,7 @@ static int do_test_file(unsigned int test_num) ...@@ -2573,7 +2573,7 @@ static int do_test_file(unsigned int test_num)
} }
func_info = malloc(info.func_info_cnt * rec_size); 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; err = -1;
goto done; goto done;
} }
...@@ -3299,7 +3299,7 @@ static int do_test_func_type(int test_num) ...@@ -3299,7 +3299,7 @@ static int do_test_func_type(int test_num)
} }
func_info = malloc(info.func_info_cnt * rec_size); 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; err = -1;
goto done; goto done;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment