@@ -2392,7 +2392,7 @@ static int selinux_bprm_creds_for_exec(struct linux_binprm *bprm)
return 0;
}
-static int match_file(const void *p, struct file *file, unsigned fd)
+static int match_file(const void *p, struct file *file, unsigned int fd)
{
return file_has_perm(p, file, file_to_av(file)) ? fd + 1 : 0;
}
@@ -2404,7 +2404,7 @@ static inline void flush_unauthorized_files(const struct cred *cred,
struct file *file, *devnull = NULL;
struct tty_struct *tty;
int drop_tty = 0;
- unsigned n;
+ unsigned int n;
tty = get_current_tty();
if (tty) {
'unsigned int' is better than 'unsigned'. Signed-off-by: Xin Gao <gaoxin@cdjrlc.com> --- security/selinux/hooks.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)