summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRolf Eike Beer <eb@emlix.com>2020-06-25 09:47:06 +0200
committerPaul Moore <paul@paul-moore.com>2020-06-25 12:20:52 -0400
commit147f09547e231cb904adf1b40f4ce70c76a0fc6e (patch)
tree5a6f82654ce3c6add17ce68f019b3dca88efa4e4
parent34bf78abc9567b66c72dbe67e7f243072162a25f (diff)
downloadlibseccomp-147f09547e231cb904adf1b40f4ce70c76a0fc6e.tar.gz
system: fix typo in comment
Signed-off-by: Rolf Eike Beer <eb@emlix.com> Signed-off-by: Paul Moore <paul@paul-moore.com>
-rw-r--r--src/system.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/system.c b/src/system.c
index 741a74e..6522cb8 100644
--- a/src/system.c
+++ b/src/system.c
@@ -93,7 +93,7 @@ int sys_chk_seccomp_syscall(void)
/* this is an invalid call because the second argument is non-zero, but
* depending on the errno value of ENOSYS or EINVAL we can guess if the
- * seccomp() syscal is supported or not */
+ * seccomp() syscall is supported or not */
rc = syscall(nr_seccomp, SECCOMP_SET_MODE_STRICT, 1, NULL);
if (rc < 0 && errno == EINVAL)
goto supported;