From d5f77038335d523da509e0c246da8be794c511b7 Mon Sep 17 00:00:00 2001 From: Tom Hromatka Date: Wed, 29 Mar 2023 08:15:37 -0600 Subject: [PATCH] all: fix comment typos Fix two comment typos reported by Codespell: Error: ./src/syscalls.c:292: pseduo ==> pseudo Error: ./src/gen_pfc.c:247: pseduo ==> pseudo Signed-off-by: Tom Hromatka --- src/gen_pfc.c | 2 +- src/syscalls.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gen_pfc.c b/src/gen_pfc.c index bb217c8e..9d2dedb0 100644 --- a/src/gen_pfc.c +++ b/src/gen_pfc.c @@ -244,7 +244,7 @@ static void _gen_pfc_chain(const struct arch_def *arch, * @param sys the syscall filter * @param fds the file stream to send the output * - * This function generates a pseduo filter code representation of the given + * This function generates a pseudo filter code representation of the given * syscall filter and writes it to the given output stream. * */ diff --git a/src/syscalls.c b/src/syscalls.c index 4e3d0e89..9c58c127 100644 --- a/src/syscalls.c +++ b/src/syscalls.c @@ -289,7 +289,7 @@ case __PNR_##NAME: \ * @param arch the arch definition * @param syscall the direct syscall * - * Return the related multiplexed pseduo syscall number, __NR_SCMP_UNDEF is + * Return the related multiplexed pseudo syscall number, __NR_SCMP_UNDEF is * there is no related pseudo syscall, or __NR_SCMP_ERROR otherwise. * */