From fcdd3306620f9cf2317f222eebc7c0eced9d8a07 Mon Sep 17 00:00:00 2001 From: vda Date: Fri, 22 Dec 2006 18:37:07 +0000 Subject: remove useless casts (type*) xzalloc(...) git-svn-id: svn://busybox.net/trunk/busybox@17059 69ca8d6d-28ef-0310-b511-8ec308f3f277 --- shell/lash.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'shell') diff --git a/shell/lash.c b/shell/lash.c index 3b51e98a9..525767190 100644 --- a/shell/lash.c +++ b/shell/lash.c @@ -1377,7 +1377,7 @@ static int busy_loop(FILE * input) } else { free(command); - command = (char *) xzalloc(BUFSIZ); + command = xzalloc(BUFSIZ); next_command = NULL; } } else { -- cgit v1.2.3-55-g6feb