diff options
author | Colin Ian King <colin.i.king@gmail.com> | 2022-10-26 09:16:45 +0100 |
---|---|---|
committer | Martin KaFai Lau <martin.lau@kernel.org> | 2022-10-26 18:20:22 -0700 |
commit | 96f341a4751d1939a303c5c526b2ca79ebda075f (patch) | |
tree | e35f9a5d7805a12e27c612ae562852c57cee349f /tools/bpf | |
parent | d96d4276eaeb09b07e0949d432622691ea5c96f5 (diff) |
bpftool: Fix spelling mistake "disasembler" -> "disassembler"
There is a spelling mistake in an error message. Fix it.
Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
Acked-by: Quentin Monnet <quentin@isovalent.com>
Link: https://lore.kernel.org/r/20221026081645.3186878-1-colin.i.king@gmail.com
Signed-off-by: Martin KaFai Lau <martin.lau@kernel.org>
Diffstat (limited to 'tools/bpf')
-rw-r--r-- | tools/bpf/bpftool/jit_disasm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/bpf/bpftool/jit_disasm.c b/tools/bpf/bpftool/jit_disasm.c index 58a5017034a2..7b8d9ec89ebd 100644 --- a/tools/bpf/bpftool/jit_disasm.c +++ b/tools/bpf/bpftool/jit_disasm.c @@ -223,7 +223,7 @@ static int init_context(disasm_ctx_t *ctx, const char *arch, memset(tpath, 0, sizeof(tpath)); if (get_exec_path(tpath, sizeof(tpath))) { - p_err("failed to create disasembler (get_exec_path)"); + p_err("failed to create disassembler (get_exec_path)"); return -1; } |