diff --git a/[refs] b/[refs] index 2ce5b78cbb97..a9bda9394deb 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: e501f29c727dea74e2124c584cbab5fa805d489b +refs/heads/master: f7b88631a89757d70192044c9d9f2e8d2fc02f2c diff --git a/trunk/fs/libfs.c b/trunk/fs/libfs.c index c88eab55aec9..275ca4749a2e 100644 --- a/trunk/fs/libfs.c +++ b/trunk/fs/libfs.c @@ -822,7 +822,7 @@ ssize_t simple_attr_write(struct file *file, const char __user *buf, goto out; attr->set_buf[size] = '\0'; - val = simple_strtol(attr->set_buf, NULL, 0); + val = simple_strtoll(attr->set_buf, NULL, 0); ret = attr->set(attr->data, val); if (ret == 0) ret = len; /* on success, claim we got the whole input */