aboutsummaryrefslogtreecommitdiff
path: root/shell/hush.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/hush.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/hush.c')
-rw-r--r--shell/hush.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/shell/hush.c b/shell/hush.c
index ff29974b6..096b40251 100644
--- a/shell/hush.c
+++ b/shell/hush.c
@@ -2614,10 +2614,10 @@ int parse_stream(o_string *dest, struct p_context *ctx,
2614 return 0; 2614 return 0;
2615} 2615}
2616 2616
2617static void mapset(const unsigned char *set, int code) 2617static void mapset(const char *set, int code)
2618{ 2618{
2619 const unsigned char *s; 2619 const char *s;
2620 for (s=set; *s; s++) map[*s] = code; 2620 for (s=set; *s; s++) map[(int)*s] = code;
2621} 2621}
2622 2622
2623static void update_ifs_map(void) 2623static void update_ifs_map(void)