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>
This commit is contained in:
parent
494c167cf7
commit
52dcf8a1f8
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in New Issue