diff options
author | Davidlohr Bueso <dave@gnu.org> | 2011-12-05 22:13:41 +0100 |
---|---|---|
committer | Tejun Heo <tj@kernel.org> | 2011-12-13 16:43:08 +0100 |
commit | 52dcf8a1f8ac09b6ea21266ebdc4db6d52eea1fc (patch) | |
tree | c09ead58807af8d3d2634672a46fbc0c41787071 /kernel/res_counter.c | |
parent | cgroup: kill subsys->can_attach_task(), pre_attach() and attach_task() (diff) | |
download | linux-52dcf8a1f8ac09b6ea21266ebdc4db6d52eea1fc.tar.xz linux-52dcf8a1f8ac09b6ea21266ebdc4db6d52eea1fc.zip |
resource cgroups: remove bogus cast
The memparse() function already accepts const char * as the parsing string.
Signed-off-by: Davidlohr Bueso <dave@gnu.org>
Acked-by: Pavel Emelyanov <xemul@parallels.com>
Signed-off-by: Tejun Heo <tj@kernel.org>
Diffstat (limited to 'kernel/res_counter.c')
-rw-r--r-- | kernel/res_counter.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/kernel/res_counter.c b/kernel/res_counter.c index 34683efa2cce..6d269cce7aa1 100644 --- a/kernel/res_counter.c +++ b/kernel/res_counter.c @@ -159,8 +159,7 @@ int res_counter_memparse_write_strategy(const char *buf, return 0; } - /* FIXME - make memparse() take const char* args */ - *res = memparse((char *)buf, &end); + *res = memparse(buf, &end); if (*end != '\0') return -EINVAL; |