diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2019-08-05 13:02:29 +0200 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2019-08-05 13:08:43 +0200 |
commit | 728741e35ef93d7512a5934351c44bfaee7c1144 (patch) | |
tree | 53ca514b76d9541e1bccbb25909ad152f00e4a15 /base64.c | |
parent | c2a72f07760f971f357bfd9cb2b0260a5c5161aa (diff) | |
download | fetchmail-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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] == ' ') |