git.codelabs.ch
/
muen
/
linux.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
fault-inject: automatically detect the number base for fail-nth write interface
[muen/linux.git]
/
fs
/
proc
/
base.c
diff --git
a/fs/proc/base.c
b/fs/proc/base.c
index 88b773f318cd06f31ca6262bb5949728c199ade0..5d93512beea11878efe6cd2984e84ba23a728c51 100644
(file)
--- a/
fs/proc/base.c
+++ b/
fs/proc/base.c
@@
-1368,7
+1368,7
@@
static ssize_t proc_fail_nth_write(struct file *file, const char __user *buf,
put_task_struct(task);
if (task != current)
return -EPERM;
- err = kstrtoint_from_user(buf, count,
1
0, &n);
+ err = kstrtoint_from_user(buf, count, 0, &n);
if (err)
return err;
if (n < 0 || n == INT_MAX)