From 49d8fa1058aaf23c29e074b2314492ae40d2f557 Mon Sep 17 00:00:00 2001 From: Laurent Bercot Date: Tue, 21 Feb 2017 12:05:07 +0000 Subject: Types change: big pass on libstddjb and libunixonacid libdatastruct still missing, library still not functional --- src/libstdcrypto/md5_transform.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/libstdcrypto/md5_transform.c') diff --git a/src/libstdcrypto/md5_transform.c b/src/libstdcrypto/md5_transform.c index 0e65671..e210e73 100644 --- a/src/libstdcrypto/md5_transform.c +++ b/src/libstdcrypto/md5_transform.c @@ -14,7 +14,7 @@ void md5_transform (uint32_t *buf /* 4 uint32s */, uint32_t const *in /* 16 uint32s */) { - register uint32_t a = buf[0], b = buf[1], c = buf[2], d = buf[3] ; + uint32_t a = buf[0], b = buf[1], c = buf[2], d = buf[3] ; MD5STEP(F1, a, b, c, d, in[0] + 0xd76aa478U, 7) ; MD5STEP(F1, d, a, b, c, in[1] + 0xe8c7b756U, 12) ; -- cgit v1.3.1