diff options
| author | Colin Ian King <colin.i.king@gmail.com> | 2025-11-28 17:38:02 +0000 |
|---|---|---|
| committer | Jakub Kicinski <kuba@kernel.org> | 2025-12-01 11:54:09 -0800 |
| commit | 7adf0efb41fc386daed9f74b9fe8d7e28f0f6f3d (patch) | |
| tree | bb33efdadac57f00939911049099c96f1d95a6cf | |
| parent | 0177f0f07886e54e12c6f18fa58f63e63ddd3c58 (diff) | |
ynl: samples: Fix spelling mistake "failedq" -> "failed"
There is a spelling mistake in an error message. Fix it.
Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
Link: https://patch.msgid.link/20251128173802.318520-1-colin.i.king@gmail.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
| -rw-r--r-- | tools/net/ynl/samples/tc-filter-add.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/net/ynl/samples/tc-filter-add.c b/tools/net/ynl/samples/tc-filter-add.c index 1f9cd3f62df6..97871e9e9edc 100644 --- a/tools/net/ynl/samples/tc-filter-add.c +++ b/tools/net/ynl/samples/tc-filter-add.c @@ -207,7 +207,7 @@ static int tc_filter_del(struct ynl_sock *ys, int ifi) req = tc_deltfilter_req_alloc(); if (!req) { - fprintf(stderr, "tc_deltfilter_req_alloc failedq\n"); + fprintf(stderr, "tc_deltfilter_req_alloc failed\n"); return -1; } memset(req, 0, sizeof(*req)); |