Blob Blame History Raw
From: Colin Ian King <colin.i.king@gmail.com>
Date: Wed, 6 Apr 2022 09:08:35 +0100
Subject: libbpf: Fix spelling mistake "libaries" -> "libraries"
Patch-mainline: v5.19-rc1
Git-commit: a8d600f6bcd453f1807703b5a016212f5484ffa1
References: jsc#PED-1377

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

Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Link: https://lore.kernel.org/bpf/20220406080835.14879-1-colin.i.king@gmail.com
Acked-by: Shung-Hsi Yu <shung-hsi.yu@suse.com>
---
 tools/lib/bpf/usdt.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- a/tools/lib/bpf/usdt.c
+++ b/tools/lib/bpf/usdt.c
@@ -687,7 +687,7 @@ static int collect_usdt_targets(struct u
 			 * 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;
 			}