[PATCH] tools/objtool: Fix typo in warning message

Praveen Rajendran posted 1 patch 1 week, 3 days ago
tools/objtool/check.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[PATCH] tools/objtool: Fix typo in warning message
Posted by Praveen Rajendran 1 week, 3 days ago
Correct a minor spelling error inside check.c where "the"
was accidentally written as "teh".

Signed-off-by: Praveen Rajendran <praveenrajendran2009@gmail.com>
---
 tools/objtool/check.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/objtool/check.c b/tools/objtool/check.c
index 10b18cf9c360..1fa1340ed991 100644
--- a/tools/objtool/check.c
+++ b/tools/objtool/check.c
@@ -4118,7 +4118,7 @@ static int validate_unret(struct objtool_file *file, struct instruction *insn)
 			return 0;
 
 		if (!next) {
-			WARN_INSN(insn, "teh end!");
+			WARN_INSN(insn, "the end!");
 			return 1;
 		}
 		insn = next;
-- 
2.50.1
Re: [PATCH] tools/objtool: Fix typo in warning message
Posted by Miroslav Benes 1 week, 1 day ago
Hi,

On Wed, 1 Jul 2026, Praveen Rajendran wrote:

> Correct a minor spelling error inside check.c where "the"
> was accidentally written as "teh".

thanks for the patch but it is intentional and not an error.

Miroslav