aboutsummaryrefslogtreecommitdiffstats
path: root/base64.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1997-06-11 14:14:45 +0000
committerEric S. Raymond <esr@thyrsus.com>1997-06-11 14:14:45 +0000
commit85f067d97fdf18769eefd8419ab10c3a9a113195 (patch)
treebfee6b6c300dd287f69ec213a6472ff6620f067a /base64.c
parente553aea6031e99f495849ccde9cfcf4de5d052ab (diff)
downloadfetchmail-85f067d97fdf18769eefd8419ab10c3a9a113195.tar.gz
fetchmail-85f067d97fdf18769eefd8419ab10c3a9a113195.tar.bz2
fetchmail-85f067d97fdf18769eefd8419ab10c3a9a113195.zip
-Wall cleanup.
svn path=/trunk/; revision=1083
Diffstat (limited to 'base64.c')
-rw-r--r--base64.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/base64.c b/base64.c
index 490cd7f3..ef36be6f 100644
--- a/base64.c
+++ b/base64.c
@@ -55,7 +55,7 @@ int from64tobits(char *out, const char *in)
/* base 64 to raw bytes in quasi-big-endian order, returning count of bytes */
{
int len = 0;
- register char digit1, digit2, digit3, digit4;
+ register unsigned char digit1, digit2, digit3, digit4;
if (in[0] == '+' && in[1] == ' ')
in += 2;