projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8d75839
)
tools/bpf: fix spelling mistake "memeory" -> "memory"
author
Colin Ian King
<
[email protected]
>
Thu, 22 Nov 2018 10:13:45 +0000
(10:13 +0000)
committer
Daniel Borkmann
<
[email protected]
>
Thu, 22 Nov 2018 11:15:54 +0000
(12:15 +0100)
The CHECK message contains a spelling mistake, fix it.
Signed-off-by: Colin Ian King <
[email protected]
>
Signed-off-by: Daniel Borkmann <
[email protected]
>
tools/testing/selftests/bpf/test_btf.c
patch
|
blob
|
history
diff --git
a/tools/testing/selftests/bpf/test_btf.c
b/tools/testing/selftests/bpf/test_btf.c
index 7b1b160d6e67b5b891c32d97c8f7c9b79a28d8ec..bcbda7037840ef117861d3aa68f95c771f1e9c27 100644
(file)
--- a/
tools/testing/selftests/bpf/test_btf.c
+++ b/
tools/testing/selftests/bpf/test_btf.c
@@
-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 mem
e
ory")) {
+ 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 mem
e
ory")) {
+ if (CHECK(!func_info, "out of memory")) {
err = -1;
goto done;
}