[RESEND PATCH] bpftool: Fix typo in error message

Thorsten Blum posted 1 patch 1 year, 10 months ago
tools/bpf/bpftool/prog.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[RESEND PATCH] bpftool: Fix typo in error message
Posted by Thorsten Blum 1 year, 10 months ago
s/at at/at a/

Signed-off-by: Thorsten Blum <thorsten.blum@toblux.com>
---
Resending this because I forgot to CC the mailing lists
---
 tools/bpf/bpftool/prog.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/bpf/bpftool/prog.c b/tools/bpf/bpftool/prog.c
index 9cb42a3366c0..c5cb0f9beb07 100644
--- a/tools/bpf/bpftool/prog.c
+++ b/tools/bpf/bpftool/prog.c
@@ -2078,7 +2078,7 @@ static int profile_parse_metrics(int argc, char **argv)
 		NEXT_ARG();
 	}
 	if (selected_cnt > MAX_NUM_PROFILE_METRICS) {
-		p_err("too many (%d) metrics, please specify no more than %d metrics at at time",
+		p_err("too many (%d) metrics, please specify no more than %d metrics at a time",
 		      selected_cnt, MAX_NUM_PROFILE_METRICS);
 		return -1;
 	}
-- 
2.44.0
Re: [RESEND PATCH] bpftool: Fix typo in error message
Posted by Quentin Monnet 1 year, 10 months ago
On 11/04/2024 17:43, Thorsten Blum wrote:
> s/at at/at a/
> 
> Signed-off-by: Thorsten Blum <thorsten.blum@toblux.com>
Acked-by: Quentin Monnet <qmo@kernel.org>

Thanks