diff mbox series

[1/7] tools/nolibc: fix typo pint -> point

Message ID 20230521-nolibc-automatic-stack-protector-v1-1-dad6c80c51c1@weissschuh.net (mailing list archive)
State Accepted
Commit 659ee30f33b1cbafcc364cffc24db0fe31f26ed5
Headers show
Series tools/nolibc: autodetect stackprotector availability from compiler | expand

Commit Message

Thomas Weißschuh May 21, 2023, 9:36 a.m. UTC
Signed-off-by: Thomas Weißschuh <linux@weissschuh.net>
---
 tools/include/nolibc/arch.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/tools/include/nolibc/arch.h b/tools/include/nolibc/arch.h
index 2d5386a8d6aa..82b43935650f 100644
--- a/tools/include/nolibc/arch.h
+++ b/tools/include/nolibc/arch.h
@@ -7,7 +7,7 @@ 
  * the syscall declarations and the _start code definition. This is the only
  * global part. On all architectures the kernel puts everything in the stack
  * before jumping to _start just above us, without any return address (_start
- * is not a function but an entry pint). So at the stack pointer we find argc.
+ * is not a function but an entry point). So at the stack pointer we find argc.
  * Then argv[] begins, and ends at the first NULL. Then we have envp which
  * starts and ends with a NULL as well. So envp=argv+argc+1.
  */