提交 52dcf8a1 编写于 作者: D Davidlohr Bueso 提交者: Tejun Heo

resource cgroups: remove bogus cast

The memparse() function already accepts const char * as the parsing string.
Signed-off-by: NDavidlohr Bueso <dave@gnu.org>
Acked-by: NPavel Emelyanov <xemul@parallels.com>
Signed-off-by: NTejun Heo <tj@kernel.org>
上级 494c167c
......@@ -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;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册