aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/selinux/genheaders/genheaders.c
diff options
context:
space:
mode:
authorJames Morris <jmorris@namei.org>2010-03-16 08:47:36 +1100
committerJames Morris <jmorris@namei.org>2010-03-16 08:47:36 +1100
commit310de047eef6685274045db1e6b39c9f313df428 (patch)
tree4f90d2ea0f068cffee5d9c569260098f6d94dd22 /scripts/selinux/genheaders/genheaders.c
parentSELinux: Reduce max avtab size to avoid page allocation failures (diff)
downloadlinux-dev-310de047eef6685274045db1e6b39c9f313df428.tar.xz
linux-dev-310de047eef6685274045db1e6b39c9f313df428.zip
selinux: fix warning in genheaders
Fix const warning in the genheaders script as a result of changes to the headers, as noted here: http://linux.derkeiler.com/Mailing-Lists/Kernel/2010-03/msg03977.html Reported-by: Stephen Rothwell <sfr@canb.auug.org.au> Signed-off-by: James Morris <jmorris@namei.org>
Diffstat (limited to 'scripts/selinux/genheaders/genheaders.c')
-rw-r--r--scripts/selinux/genheaders/genheaders.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/selinux/genheaders/genheaders.c b/scripts/selinux/genheaders/genheaders.c
index 24626968055d..58a12c278706 100644
--- a/scripts/selinux/genheaders/genheaders.c
+++ b/scripts/selinux/genheaders/genheaders.c
@@ -81,7 +81,7 @@ int main(int argc, char *argv[])
fprintf(fout, "\n");
for (i = 1; i < isids_len; i++) {
- char *s = initial_sid_to_string[i];
+ const char *s = initial_sid_to_string[i];
fprintf(fout, "#define SECINITSID_%s", s);
for (j = 0; j < max(1, 40 - strlen(s)); j++)
fprintf(fout, " ");