diff options
| author | Mark Brown <broonie@kernel.org> | 2026-05-29 22:43:25 +0100 |
|---|---|---|
| committer | Mark Brown <broonie@kernel.org> | 2026-05-29 22:43:25 +0100 |
| commit | 47715d5a2682f824692bdf6b8b51cdfae0f077c6 (patch) | |
| tree | fd9725b20a1e30889bd68baa8dfa3a2b375296ee /lib | |
| parent | 4bc0e6d39b7c764e4345562c4ee398986939d1e0 (diff) | |
| parent | 7aefee0518c3b9b22fcca270586465dcdd164dbc (diff) | |
| download | linux-next-history-47715d5a2682f824692bdf6b8b51cdfae0f077c6.tar.gz | |
Merge branch 'next' of https://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/compat_audit.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/compat_audit.c b/lib/compat_audit.c index 3d6b8996f027d..fee1dfccd116b 100644 --- a/lib/compat_audit.c +++ b/lib/compat_audit.c @@ -4,32 +4,32 @@ #include <linux/audit_arch.h> #include <asm/unistd32.h> -unsigned compat_dir_class[] = { +unsigned int compat_dir_class[] = { #include <asm-generic/audit_dir_write.h> ~0U }; -unsigned compat_read_class[] = { +unsigned int compat_read_class[] = { #include <asm-generic/audit_read.h> ~0U }; -unsigned compat_write_class[] = { +unsigned int compat_write_class[] = { #include <asm-generic/audit_write.h> ~0U }; -unsigned compat_chattr_class[] = { +unsigned int compat_chattr_class[] = { #include <asm-generic/audit_change_attr.h> ~0U }; -unsigned compat_signal_class[] = { +unsigned int compat_signal_class[] = { #include <asm-generic/audit_signal.h> ~0U }; -int audit_classify_compat_syscall(int abi, unsigned syscall) +int audit_classify_compat_syscall(int abi, unsigned int syscall) { switch (syscall) { #ifdef __NR_open |
