dect
/
linux-2.6
Archived
13
0
Fork 0

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:
Davidlohr Bueso 2011-12-05 22:13:41 +01:00 committed by Tejun Heo
parent 494c167cf7
commit 52dcf8a1f8
1 changed files with 1 additions and 2 deletions

View File

@ -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;