diff options
author | Rolf Eike Beer <eb@emlix.com> | 2020-06-25 09:47:06 +0200 |
---|---|---|
committer | Paul Moore <paul@paul-moore.com> | 2020-06-25 12:20:52 -0400 |
commit | 147f09547e231cb904adf1b40f4ce70c76a0fc6e (patch) | |
tree | 5a6f82654ce3c6add17ce68f019b3dca88efa4e4 | |
parent | 34bf78abc9567b66c72dbe67e7f243072162a25f (diff) | |
download | libseccomp-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.c | 2 |
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; |