aboutsummaryrefslogtreecommitdiff
path: root/shell/lash.c
diff options
context:
space:
mode:
authorandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-01-30 22:48:39 +0000
committerandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-01-30 22:48:39 +0000
commit45d22dce9fb986e738313cd9f1f246255db097e8 (patch)
tree5741be315758b807145c24da9ff3a1dbf8fce4e8 /shell/lash.c
parent6ef925c28235f73e3a054a61717ea40fcd4ffd98 (diff)
downloadbusybox-w32-45d22dce9fb986e738313cd9f1f246255db097e8.tar.gz
busybox-w32-45d22dce9fb986e738313cd9f1f246255db097e8.tar.bz2
busybox-w32-45d22dce9fb986e738313cd9f1f246255db097e8.zip
fix up yet more annoying signed/unsigned and mixed type errors
git-svn-id: svn://busybox.net/trunk/busybox@13732 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'shell/lash.c')
-rw-r--r--shell/lash.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/lash.c b/shell/lash.c
index 56a3a23dd..1b8aca506 100644
--- a/shell/lash.c
+++ b/shell/lash.c
@@ -1440,7 +1440,7 @@ static int busy_loop(FILE * input)
1440 char *next_command = NULL; 1440 char *next_command = NULL;
1441 struct job newjob; 1441 struct job newjob;
1442 int i; 1442 int i;
1443 int inbg; 1443 int inbg = 0;
1444 int status; 1444 int status;
1445#ifdef CONFIG_LASH_JOB_CONTROL 1445#ifdef CONFIG_LASH_JOB_CONTROL
1446 pid_t parent_pgrp; 1446 pid_t parent_pgrp;