aboutsummaryrefslogtreecommitdiff
path: root/coreutils/uudecode.c
diff options
context:
space:
mode:
Diffstat (limited to 'coreutils/uudecode.c')
-rw-r--r--coreutils/uudecode.c2
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 {