diff options
author | Eric Andersen <andersen@codepoet.org> | 2006-01-30 19:48:23 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2006-01-30 19:48:23 +0000 |
commit | 5e678873f9ff7c95d43b278feee547ce989b3b20 (patch) | |
tree | 6b0bab1e0d6df7f659352acc7dc844663c11634c /coreutils/uudecode.c | |
parent | 2cdd4d56ffc3b467d5ffa76e3c4cd009dc311097 (diff) | |
download | busybox-w32-5e678873f9ff7c95d43b278feee547ce989b3b20.tar.gz busybox-w32-5e678873f9ff7c95d43b278feee547ce989b3b20.tar.bz2 busybox-w32-5e678873f9ff7c95d43b278feee547ce989b3b20.zip |
clean up yet more annoying signed/unsigned mismatches and fixup
yet more incorrect types
Diffstat (limited to 'coreutils/uudecode.c')
-rw-r--r-- | coreutils/uudecode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/uudecode.c b/coreutils/uudecode.c index da6490a81..60bf7d8c1 100644 --- a/coreutils/uudecode.c +++ b/coreutils/uudecode.c | |||
@@ -93,7 +93,7 @@ static int read_base64(FILE *src_stream, FILE *dst_stream) | |||
93 | 93 | ||
94 | while (count < 4) { | 94 | while (count < 4) { |
95 | char *table_ptr; | 95 | char *table_ptr; |
96 | char ch; | 96 | int ch; |
97 | 97 | ||
98 | /* Get next _valid_ character */ | 98 | /* Get next _valid_ character */ |
99 | do { | 99 | do { |