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 /md5c.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 'md5c.c')
-rw-r--r-- | md5c.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -59,7 +59,7 @@ void MD5Init(struct MD5Context *ctx) void MD5Update(struct MD5Context *ctx, const void *buf_, unsigned len) { const unsigned char *buf = (const unsigned char *)buf_; - register uint32_t t; + uint32_t t; /* Update bitcount */ @@ -165,7 +165,7 @@ void MD5Final(void *digest, struct MD5Context *ctx) */ void MD5Transform(uint32_t buf[4], uint32_t const in[16]) { - register uint32_t a, b, c, d; + uint32_t a, b, c, d; a = buf[0]; b = buf[1]; |