summaryrefslogtreecommitdiffstats
path: root/kexi/3rdparty/kexisql3/src/md5.c
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2020-01-30 20:17:52 +0900
committerMichele Calgaro <[email protected]>2020-01-30 20:17:52 +0900
commite5dc5b5be9900b9c8b2d7988216d56156c806b20 (patch)
treed0209902442729f7856d2a8efdca565373fb5c43 /kexi/3rdparty/kexisql3/src/md5.c
parent9d008f46e1b540304fdb7fb0270e23b7c3f43a68 (diff)
downloadkoffice-e5dc5b5be9900b9c8b2d7988216d56156c806b20.tar.gz
koffice-e5dc5b5be9900b9c8b2d7988216d56156c806b20.zip
Removed explicit usage of the 'register' keyword.
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'kexi/3rdparty/kexisql3/src/md5.c')
-rw-r--r--kexi/3rdparty/kexisql3/src/md5.c2
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];