diff options
Diffstat (limited to 'kexi/3rdparty/kexisql3/src/md5.c')
-rw-r--r-- | kexi/3rdparty/kexisql3/src/md5.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kexi/3rdparty/kexisql3/src/md5.c b/kexi/3rdparty/kexisql3/src/md5.c index 32fcb6b6..a527b256 100644 --- a/kexi/3rdparty/kexisql3/src/md5.c +++ b/kexi/3rdparty/kexisql3/src/md5.c @@ -81,7 +81,7 @@ static void byteReverse (unsigned char *buf, unsigned longs){ * the data and converts bytes into longwords for this routine. */ static void MD5Transform(uint32 buf[4], const uint32 in[16]){ - register uint32 a, b, c, d; + uint32 a, b, c, d; a = buf[0]; b = buf[1]; |