aboutsummaryrefslogtreecommitdiffstats
path: root/base64.c
diff options
context:
space:
mode:
authorMatthias Andree <matthias.andree@gmx.de>2019-08-05 13:02:29 +0200
committerMatthias Andree <matthias.andree@gmx.de>2019-08-05 13:08:43 +0200
commit728741e35ef93d7512a5934351c44bfaee7c1144 (patch)
tree53ca514b76d9541e1bccbb25909ad152f00e4a15 /base64.c
parentc2a72f07760f971f357bfd9cb2b0260a5c5161aa (diff)
downloadfetchmail-728741e35ef93d7512a5934351c44bfaee7c1144.tar.gz
fetchmail-728741e35ef93d7512a5934351c44bfaee7c1144.tar.bz2
fetchmail-728741e35ef93d7512a5934351c44bfaee7c1144.zip
Remove register qualifier.
Let the compiler sort out register allocation.
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 3cd41691..9af84a48 100644
--- a/base64.c
+++ b/base64.c
@@ -66,7 +66,7 @@ int from64tobits(void *out_, const char *in, int maxlen)
/* maxlen limits output buffer size, set to zero to ignore */
{
int len = 0;
- register unsigned char digit1, digit2, digit3, digit4;
+ unsigned char digit1, digit2, digit3, digit4;
unsigned char *out = (unsigned char *)out_;
if (in[0] == '+' && in[1] == ' ')