diff options
author | Davidlohr Bueso <dave@gnu.org> | 2011-12-05 16:13:41 -0500 |
---|---|---|
committer | Tejun Heo <tj@kernel.org> | 2011-12-13 10:43:08 -0500 |
commit | 52dcf8a1f8ac09b6ea21266ebdc4db6d52eea1fc (patch) | |
tree | c09ead58807af8d3d2634672a46fbc0c41787071 /kernel/res_counter.c | |
parent | 494c167cf76d02000adf740c215adc69a824ecc9 (diff) |
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, | |||
159 | return 0; | 159 | return 0; |
160 | } | 160 | } |
161 | 161 | ||
162 | /* FIXME - make memparse() take const char* args */ | 162 | *res = memparse(buf, &end); |
163 | *res = memparse((char *)buf, &end); | ||
164 | if (*end != '\0') | 163 | if (*end != '\0') |
165 | return -EINVAL; | 164 | return -EINVAL; |
166 | 165 | ||