aboutsummaryrefslogtreecommitdiffstats
path: root/security/keys/sysctl.c
diff options
context:
space:
mode:
authorJoe Perches <joe@perches.com>2014-04-13 18:55:51 -0700
committerJames Morris <james.l.morris@oracle.com>2014-04-15 13:39:58 +1000
commitfab71a90eddaf4d5f654fdd0ea7c46315c8da4a4 (patch)
tree989134b9874939b36437c9a1bf0d74391eb777d5 /security/keys/sysctl.c
parentMerge tag 'keys-20140314' of git://git.kernel.org/pub/scm/linux/kernel/git/dhowells/linux-fs into next (diff)
downloadlinux-dev-fab71a90eddaf4d5f654fdd0ea7c46315c8da4a4.tar.xz
linux-dev-fab71a90eddaf4d5f654fdd0ea7c46315c8da4a4.zip
security: Convert use of typedef ctl_table to struct ctl_table
This typedef is unnecessary and should just be removed. Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: James Morris <james.l.morris@oracle.com>
Diffstat (limited to '')
-rw-r--r--security/keys/sysctl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/security/keys/sysctl.c b/security/keys/sysctl.c
index 8c0af08760c8..b68faa1a5cfd 100644
--- a/security/keys/sysctl.c
+++ b/security/keys/sysctl.c
@@ -15,7 +15,7 @@
static const int zero, one = 1, max = INT_MAX;
-ctl_table key_sysctls[] = {
+struct ctl_table key_sysctls[] = {
{
.procname = "maxkeys",
.data = &key_quota_maxkeys,