aboutsummaryrefslogtreecommitdiffstats
path: root/security
diff options
context:
space:
mode:
authorAndrew Morton <akpm@osdl.org>2004-04-12 01:03:56 -0700
committerLinus Torvalds <torvalds@ppc970.osdl.org>2004-04-12 01:03:56 -0700
commitc40853f23d2a575abf72c704c098710681d7c002 (patch)
tree4044e0131c8470896269eb3c8dbf53b0a7b7ee9a /security
parent9c8b76eb5e417e5e8f33338a9fff1636a092e118 (diff)
downloadhistory-c40853f23d2a575abf72c704c098710681d7c002.tar.gz
[PATCH] policydb printk warnings
security/selinux/ss/policydb.c:1160: warning: signed size_t format, different type arg (arg 3) security/selinux/ss/policydb.c:1160: warning: signed size_t format, different type arg (arg 3)
Diffstat (limited to 'security')
-rw-r--r--security/selinux/ss/policydb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/security/selinux/ss/policydb.c b/security/selinux/ss/policydb.c
index fa45baeed7ebf7..d98bb8dfeb5369 100644
--- a/security/selinux/ss/policydb.c
+++ b/security/selinux/ss/policydb.c
@@ -1156,7 +1156,7 @@ int policydb_read(struct policydb *p, void *fp)
len = buf[1];
if (len != strlen(POLICYDB_STRING)) {
printk(KERN_ERR "security: policydb string length %d does not "
- "match expected length %Zd\n",
+ "match expected length %Zu\n",
len, strlen(POLICYDB_STRING));
goto bad;
}