Skip to content

Commit 11ea064

Browse files
author
Corey Henderson
committed
fix positional initialization error
1 parent 9e0e23a commit 11ea064

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tpe_config.c

+3-3
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ static struct ctl_table tpe_extras_table[] = {
9595
.mode = 0644,
9696
.proc_handler = &proc_dointvec,
9797
},
98-
{0}
98+
{}
9999
};
100100

101101
static struct ctl_table tpe_table[] = {
@@ -237,7 +237,7 @@ static struct ctl_table tpe_table[] = {
237237
.mode = 0500,
238238
.child = tpe_extras_table,
239239
},
240-
{0}
240+
{}
241241
};
242242

243243
static struct ctl_table tpe_root_table[] = {
@@ -246,7 +246,7 @@ static struct ctl_table tpe_root_table[] = {
246246
.mode = 0500,
247247
.child = tpe_table,
248248
},
249-
{0}
249+
{}
250250
};
251251

252252
static struct ctl_table_header *tpe_table_header;

0 commit comments

Comments
 (0)