diff options
author | Eric Andersen | 2006-01-30 22:48:39 +0000 |
---|---|---|
committer | Eric Andersen | 2006-01-30 22:48:39 +0000 |
commit | a68ea1cb93c29125bc4f30ddd415fca02249e010 (patch) | |
tree | 5741be315758b807145c24da9ff3a1dbf8fce4e8 /shell/lash.c | |
parent | 9a58b02ec75caafb7214f1ad0317f9a4830cbd2a (diff) | |
download | busybox-a68ea1cb93c29125bc4f30ddd415fca02249e010.zip busybox-a68ea1cb93c29125bc4f30ddd415fca02249e010.tar.gz |
fix up yet more annoying signed/unsigned and mixed type errors
Diffstat (limited to 'shell/lash.c')
-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 56a3a23..1b8aca5 100644 --- a/shell/lash.c +++ b/shell/lash.c @@ -1440,7 +1440,7 @@ static int busy_loop(FILE * input) char *next_command = NULL; struct job newjob; int i; - int inbg; + int inbg = 0; int status; #ifdef CONFIG_LASH_JOB_CONTROL pid_t parent_pgrp; |