Skip to content

Commit

Permalink
ntfs: convert use of typedef ctl_table to struct ctl_table
Browse files Browse the repository at this point in the history
This typedef is unnecessary and should just be removed.

Signed-off-by: Joe Perches <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
  • Loading branch information
JoePerches authored and torvalds committed Jun 6, 2014
1 parent 92f778d commit 5eccdf3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fs/ntfs/sysctl.c
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
#include "debug.h"

/* Definition of the ntfs sysctl. */
static ctl_table ntfs_sysctls[] = {
static struct ctl_table ntfs_sysctls[] = {
{
.procname = "ntfs-debug",
.data = &debug_msgs, /* Data pointer and size. */
Expand All @@ -46,7 +46,7 @@ static ctl_table ntfs_sysctls[] = {
};

/* Define the parent directory /proc/sys/fs. */
static ctl_table sysctls_root[] = {
static struct ctl_table sysctls_root[] = {
{
.procname = "fs",
.mode = 0555,
Expand Down

0 comments on commit 5eccdf3

Please sign in to comment.