Browse Source

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>
Joe Perches 11 years ago
parent
commit
fab71a90ed
1 changed files with 1 additions and 1 deletions
  1. 1 1
      security/keys/sysctl.c

+ 1 - 1
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,