提交 7338f299 编写于 作者: S Sukanto Ghosh 提交者: Linus Torvalds

sysctl.c: remove unused variable

Remoce the unused variable 'val' from __do_proc_dointvec()

The integer has been declared and used as 'val = -val' and there is no
reference to it anywhere.
Signed-off-by: NSukanto Ghosh <sukanto.cse.iitb@gmail.com>
Cc: Jaswinder Singh Rajput <jaswinder@kernel.org>
Cc: Sukanto Ghosh <sukanto.cse.iitb@gmail.com>
Cc: Jiri Kosina <jkosina@suse.cz>
Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
上级 81fc401e
...@@ -2283,7 +2283,7 @@ static int __do_proc_dointvec(void *tbl_data, struct ctl_table *table, ...@@ -2283,7 +2283,7 @@ static int __do_proc_dointvec(void *tbl_data, struct ctl_table *table,
void *data) void *data)
{ {
#define TMPBUFLEN 21 #define TMPBUFLEN 21
int *i, vleft, first=1, neg, val; int *i, vleft, first = 1, neg;
unsigned long lval; unsigned long lval;
size_t left, len; size_t left, len;
...@@ -2336,8 +2336,6 @@ static int __do_proc_dointvec(void *tbl_data, struct ctl_table *table, ...@@ -2336,8 +2336,6 @@ static int __do_proc_dointvec(void *tbl_data, struct ctl_table *table,
len = p-buf; len = p-buf;
if ((len < left) && *p && !isspace(*p)) if ((len < left) && *p && !isspace(*p))
break; break;
if (neg)
val = -val;
s += len; s += len;
left -= len; left -= len;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册