diff options
author | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-12-22 18:37:07 +0000 |
---|---|---|
committer | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-12-22 18:37:07 +0000 |
commit | fcdd3306620f9cf2317f222eebc7c0eced9d8a07 (patch) | |
tree | 1d9ac9a483f4ca245fff9925c30a7f842d9b51ca /shell | |
parent | d4515e6f2625e0afa649876840fef2eae612f428 (diff) | |
download | busybox-w32-fcdd3306620f9cf2317f222eebc7c0eced9d8a07.tar.gz busybox-w32-fcdd3306620f9cf2317f222eebc7c0eced9d8a07.tar.bz2 busybox-w32-fcdd3306620f9cf2317f222eebc7c0eced9d8a07.zip |
remove useless casts (type*) xzalloc(...)
git-svn-id: svn://busybox.net/trunk/busybox@17059 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'shell')
-rw-r--r-- | shell/lash.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) | |||
1377 | } | 1377 | } |
1378 | else { | 1378 | else { |
1379 | free(command); | 1379 | free(command); |
1380 | command = (char *) xzalloc(BUFSIZ); | 1380 | command = xzalloc(BUFSIZ); |
1381 | next_command = NULL; | 1381 | next_command = NULL; |
1382 | } | 1382 | } |
1383 | } else { | 1383 | } else { |