From 5e678873f9ff7c95d43b278feee547ce989b3b20 Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Mon, 30 Jan 2006 19:48:23 +0000 Subject: clean up yet more annoying signed/unsigned mismatches and fixup yet more incorrect types --- coreutils/uudecode.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'coreutils/uudecode.c') 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) while (count < 4) { char *table_ptr; - char ch; + int ch; /* Get next _valid_ character */ do { -- cgit v1.2.3