libbpf: Fix spelling mistake "kallasyms" -> "kallsyms"

There is a spelling mistake in a pr_warn message. Fix it.

Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
Acked-by: Andrii Nakryiko <andriin@fb.com>
Link: https://lore.kernel.org/bpf/20200623084207.149253-1-colin.king@canonical.com
This commit is contained in:
Colin Ian King 2020-06-23 09:42:07 +01:00 committed by Daniel Borkmann
parent 54b66c2255
commit 135c783f47

View file

@ -5741,7 +5741,7 @@ static int bpf_object__read_kallsyms_file(struct bpf_object *obj)
if (ret == EOF && feof(f))
break;
if (ret != 3) {
pr_warn("failed to read kallasyms entry: %d\n", ret);
pr_warn("failed to read kallsyms entry: %d\n", ret);
err = -EINVAL;
goto out;
}