diff options
author | Colin Ian King <colin.i.king@gmail.com> | 2024-03-08 11:44:58 +0300 |
---|---|---|
committer | Jakub Kicinski <kuba@kernel.org> | 2024-03-09 06:58:13 +0300 |
commit | 6de3b6c75dd931b078ab21f12c598c6177fb3f75 (patch) | |
tree | 7b4c804f7ab1fbae4061b82d09f2fa26e6bd5098 /tools/net/ynl | |
parent | d721812aa875a898eb38b2729abf6e96abdb357b (diff) | |
download | linux-6de3b6c75dd931b078ab21f12c598c6177fb3f75.tar.xz |
tools: ynl: Fix spelling mistake "Constructred" -> "Constructed"
There is a spelling mistake in an error message. Fix it.
Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
Acked-by: Jakub Kicinski <kuba@kernel.org>
Link: https://lore.kernel.org/r/20240308084458.2045266-1-colin.i.king@gmail.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Diffstat (limited to 'tools/net/ynl')
-rw-r--r-- | tools/net/ynl/lib/ynl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/net/ynl/lib/ynl.c b/tools/net/ynl/lib/ynl.c index b9e77af5af5f..4b9c091fc86b 100644 --- a/tools/net/ynl/lib/ynl.c +++ b/tools/net/ynl/lib/ynl.c @@ -423,7 +423,7 @@ static int ynl_msg_end(struct ynl_sock *ys, struct nlmsghdr *nlh) } if (nlh->nlmsg_pid == YNL_MSG_OVERFLOW) { yerr(ys, YNL_ERROR_INPUT_TOO_BIG, - "Constructred message longer than internal buffer"); + "Constructed message longer than internal buffer"); return -EMSGSIZE; } |