Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2001-03-07 06:51:27 +0300
committerEric Andersen <andersen@codepoet.org>2001-03-07 06:51:27 +0300
commit11ae573320e4acc8f74724ca2aef0a2bd6b72bf2 (patch)
treef86d6322221c21e1264c3f8fd956906521db063b /shell/lash.c
parent7850f1e2ac9ef6e9c859c86e35e2265f6367ab20 (diff)
remove an unused variable
Diffstat (limited to 'shell/lash.c')
-rw-r--r--shell/lash.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/shell/lash.c b/shell/lash.c
index 72d8bb38b..150055bb1 100644
--- a/shell/lash.c
+++ b/shell/lash.c
@@ -631,7 +631,6 @@ static void mark_closed(int fd)
static void close_all()
{
- int i=0;
struct close_me *c, *tmp;
for (c=close_me_head; c; c=tmp) {
close(c->fd);