> -----Original Message-----
> From: Min Hu (Connor) <[email protected]>
> Sent: Wednesday, April 21, 2021 12:37 PM
> To: [email protected]
> Cc: Yigit, Ferruh <[email protected]>; Ananyev, Konstantin
> <[email protected]>
> Subject: [PATCH] test/bpf: fix wrong error variable
>
> This patch fixed wrong error variable in logging message.
>
> Fixes: 83633ba23076 ("test/bpf: fix few small issues")
> Cc: [email protected]
>
> Signed-off-by: Min Hu (Connor) <[email protected]>
> ---
> app/test/test_bpf.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/app/test/test_bpf.c b/app/test/test_bpf.c
> index 7c3de96..527c06b 100644
> --- a/app/test/test_bpf.c
> +++ b/app/test/test_bpf.c
> @@ -3207,7 +3207,7 @@ run_test(const struct bpf_test *tst)
> printf("%s@%d: check_result(%s) failed, "
> "error: %d(%s);\n",
> __func__, __LINE__, tst->name,
> - rv, strerror(ret));
> + rv, strerror(rv));
> }
> }
>
> --
Acked-by: Konstantin Ananyev <[email protected]>
> 2.7.4