clean up yet more annoying signed/unsigned mismatches and fixup

yet more incorrect types
This commit is contained in:
Eric Andersen 2006-01-30 19:48:23 +00:00
parent 2cdd4d56ff
commit 5e678873f9
9 changed files with 28 additions and 26 deletions

View file

@ -93,7 +93,7 @@ static int read_base64(FILE *src_stream, FILE *dst_stream)
while (count < 4) {
char *table_ptr;
char ch;
int ch;
/* Get next _valid_ character */
do {