[PATCH] objtool: fix UNRET warning typo
From: Yousef Alhouseen
Date: Wed Jun 24 2026 - 08:27:26 EST
Fix a typo in the warning emitted when UNRET validation reaches the end
of an instruction stream unexpectedly.
Signed-off-by: Yousef Alhouseen <alhouseenyousef@xxxxxxxxx>
---
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 10b18cf9c..1fa1340ed 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.54.0