summaryrefslogtreecommitdiff
path: root/src/libstdcrypto/md5_init.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/libstdcrypto/md5_init.c')
-rw-r--r--src/libstdcrypto/md5_init.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/libstdcrypto/md5_init.c b/src/libstdcrypto/md5_init.c
index 56c85de..eac96b0 100644
--- a/src/libstdcrypto/md5_init.c
+++ b/src/libstdcrypto/md5_init.c
@@ -4,10 +4,10 @@
void md5_init (MD5Schedule *ctx)
{
- ctx->buf[0] = 0x67452301UL ;
- ctx->buf[1] = 0xefcdab89UL ;
- ctx->buf[2] = 0x98badcfeUL ;
- ctx->buf[3] = 0x10325476UL ;
+ ctx->buf[0] = 0x67452301U ;
+ ctx->buf[1] = 0xefcdab89U ;
+ ctx->buf[2] = 0x98badcfeU ;
+ ctx->buf[3] = 0x10325476U ;
ctx->bits[0] = 0 ;
ctx->bits[1] = 0 ;
}