aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Ian King <[email protected]>2022-04-06 09:08:35 +0100
committerAndrii Nakryiko <[email protected]>2022-04-06 10:14:27 -0700
commita8d600f6bcd453f1807703b5a016212f5484ffa1 (patch)
treef09360edc3e547d908e558f9952c7d356af13b14
parent958ddfd75d83d83e713027677c8786781e1f4576 (diff)
libbpf: Fix spelling mistake "libaries" -> "libraries"
There is a spelling mistake in a pr_warn message. Fix it. Signed-off-by: Colin Ian King <[email protected]> Signed-off-by: Andrii Nakryiko <[email protected]> Link: https://lore.kernel.org/bpf/[email protected]
-rw-r--r--tools/lib/bpf/usdt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/lib/bpf/usdt.c b/tools/lib/bpf/usdt.c
index 1bce2eab5e89..c5acf2824fcc 100644
--- a/tools/lib/bpf/usdt.c
+++ b/tools/lib/bpf/usdt.c
@@ -687,7 +687,7 @@ static int collect_usdt_targets(struct usdt_manager *man, Elf *elf, const char *
* to shared libraries with no PID filter.
*/
if (pid < 0) {
- pr_warn("usdt: attaching to shared libaries without specific PID is not supported on current kernel\n");
+ pr_warn("usdt: attaching to shared libraries without specific PID is not supported on current kernel\n");
err = -ENOTSUP;
goto err_out;
}