diff options
author | Jan Engelhardt <jengelh@computergmbh.de> | 2008-01-22 18:02:58 -0500 |
---|---|---|
committer | James Morris <jmorris@namei.org> | 2008-01-24 19:29:54 -0500 |
commit | 1996a10948e50e546dc2b64276723c0b64d3173b (patch) | |
tree | 971b235907b7c6911c21c9139e0ba85c5b84ef80 /security/selinux/selinuxfs.c | |
parent | 63cb34492351078479b2d4bae6a881806a396286 (diff) |
security/selinux: constify function pointer tables and fields
Constify function pointer tables and fields.
Signed-off-by: Jan Engelhardt <jengelh@computergmbh.de>
Signed-off-by: James Morris <jmorris@namei.org>
Diffstat (limited to 'security/selinux/selinuxfs.c')
-rw-r--r-- | security/selinux/selinuxfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/security/selinux/selinuxfs.c b/security/selinux/selinuxfs.c index 2fa483f26113..397fd4955fe1 100644 --- a/security/selinux/selinuxfs.c +++ b/security/selinux/selinuxfs.c | |||
@@ -1222,7 +1222,7 @@ static int sel_avc_stats_seq_show(struct seq_file *seq, void *v) | |||
1222 | static void sel_avc_stats_seq_stop(struct seq_file *seq, void *v) | 1222 | static void sel_avc_stats_seq_stop(struct seq_file *seq, void *v) |
1223 | { } | 1223 | { } |
1224 | 1224 | ||
1225 | static struct seq_operations sel_avc_cache_stats_seq_ops = { | 1225 | static const struct seq_operations sel_avc_cache_stats_seq_ops = { |
1226 | .start = sel_avc_stats_seq_start, | 1226 | .start = sel_avc_stats_seq_start, |
1227 | .next = sel_avc_stats_seq_next, | 1227 | .next = sel_avc_stats_seq_next, |
1228 | .show = sel_avc_stats_seq_show, | 1228 | .show = sel_avc_stats_seq_show, |