[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <1258249925.16857.198.camel@Joe-Laptop.home>
Date: Sat, 14 Nov 2009 17:52:05 -0800
From: Joe Perches <joe@...ches.com>
To: LKML <linux-kernel@...r.kernel.org>
Cc: Ingo Molnar <mingo@...e.hu>,
Andrew Morton <akpm@...ux-foundation.org>
Subject: [PATCH] sysctl.c: Change a .proc_handler = proc_dointvec to
&proc_dointvec,
Seems to be a typo.
Signed-off-by: Joe Perches <joe@...ches.com>
diff --git a/kernel/sysctl.c b/kernel/sysctl.c
index 0d949c5..d0bf4eb 100644
--- a/kernel/sysctl.c
+++ b/kernel/sysctl.c
@@ -1605,7 +1605,7 @@ static struct ctl_table debug_table[] = {
.data = &show_unhandled_signals,
.maxlen = sizeof(int),
.mode = 0644,
- .proc_handler = proc_dointvec
+ .proc_handler = &proc_dointvec,
},
#endif
{ .ctl_name = 0 }
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists