bpftool: Fix typo in error message
authorThorsten Blum <thorsten.blum@toblux.com>
Thu, 11 Apr 2024 16:43:00 +0000 (18:43 +0200)
committerDaniel Borkmann <daniel@iogearbox.net>
Fri, 12 Apr 2024 16:19:09 +0000 (18:19 +0200)
s/at at/at a/

Signed-off-by: Thorsten Blum <thorsten.blum@toblux.com>
Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
Acked-by: Quentin Monnet <qmo@kernel.org>
Link: https://lore.kernel.org/bpf/20240411164258.533063-3-thorsten.blum@toblux.com
tools/bpf/bpftool/prog.c

index 4c4cf16a40ba76f29606719b4007a1a5bfcee83c..1a501cf09e782b7b5f1a369badf99d7087fe580f 100644 (file)
@@ -2081,7 +2081,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;
        }