SELinux: Use %lu for inode->i_no when printing avc
Inode numbers are unsigned long and so need to %lu as format string of printf. Signed-off-by: Tobias Oed <tobias.oed@octant-fr.com> Signed-off-by: James Morris <jmorris@namei.org>
This commit is contained in:
parent
2c3c05dbcb
commit
13bddc2e9d
1 changed files with 1 additions and 1 deletions
|
@ -586,7 +586,7 @@ void avc_audit(u32 ssid, u32 tsid,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (inode)
|
if (inode)
|
||||||
audit_log_format(ab, " dev=%s ino=%ld",
|
audit_log_format(ab, " dev=%s ino=%lu",
|
||||||
inode->i_sb->s_id,
|
inode->i_sb->s_id,
|
||||||
inode->i_ino);
|
inode->i_ino);
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in a new issue