From: Colin Ian King Date: Fri, 8 Mar 2024 08:44:58 +0000 (+0000) Subject: tools: ynl: Fix spelling mistake "Constructred" -> "Constructed" X-Git-Tag: v6.9-rc1~159^2~38 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6de3b6c75dd931b078ab21f12c598c6177fb3f75;p=thirdparty%2Fkernel%2Fstable.git tools: ynl: Fix spelling mistake "Constructred" -> "Constructed" There is a spelling mistake in an error message. Fix it. Signed-off-by: Colin Ian King Acked-by: Jakub Kicinski Link: https://lore.kernel.org/r/20240308084458.2045266-1-colin.i.king@gmail.com Signed-off-by: Jakub Kicinski --- diff --git a/tools/net/ynl/lib/ynl.c b/tools/net/ynl/lib/ynl.c index b9e77af5af5fa..4b9c091fc86b5 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; }