aboutsummaryrefslogtreecommitdiffstats
path: root/tools/include/nolibc/nolibc.h
diff options
context:
space:
mode:
authorBhaskar Chowdhury <unixbhaskar@gmail.com>2021-06-24 08:53:13 +0200
committerPaul E. McKenney <paulmck@kernel.org>2021-07-20 13:42:26 -0700
commit9a83f9aea7bf2d831a1b3ad4cc46a3e23319894a (patch)
treefb71d856de594bc1cc2e7dc38e4749001f54dc00 /tools/include/nolibc/nolibc.h
parentLinux 5.14-rc2 (diff)
downloadlinux-dev-9a83f9aea7bf2d831a1b3ad4cc46a3e23319894a.tar.xz
linux-dev-9a83f9aea7bf2d831a1b3ad4cc46a3e23319894a.zip
tools: include: nolibc: Fix a typo occured to occurred in the file nolibc.h
s/occured/occurred/ Signed-off-by: Bhaskar Chowdhury <unixbhaskar@gmail.com> Acked-by: Randy Dunlap <rdunlap@infradead.org> Signed-off-by: Willy Tarreau <w@1wt.eu> Signed-off-by: Paul E. McKenney <paulmck@kernel.org>
Diffstat (limited to 'tools/include/nolibc/nolibc.h')
-rw-r--r--tools/include/nolibc/nolibc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/include/nolibc/nolibc.h b/tools/include/nolibc/nolibc.h
index 8b7a9830dd22..13c194aeaf3f 100644
--- a/tools/include/nolibc/nolibc.h
+++ b/tools/include/nolibc/nolibc.h
@@ -1031,7 +1031,7 @@ struct sys_stat_struct {
* scall32-o32.S in the kernel sources.
* - the system call is performed by calling "syscall"
* - syscall return comes in v0, and register a3 needs to be checked to know
- * if an error occured, in which case errno is in v0.
+ * if an error occurred, in which case errno is in v0.
* - the arguments are cast to long and assigned into the target registers
* which are then simply passed as registers to the asm code, so that we
* don't have to experience issues with register constraints.