From 2746b131aa482ac17c94bc6b82e58dbcc1b752cf Mon Sep 17 00:00:00 2001 From: Laurent Bercot Date: Sat, 21 Jan 2017 15:46:20 +0000 Subject: Types fix: librandom, libstdcrypto --- src/libstdcrypto/md5_final.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/libstdcrypto/md5_final.c') diff --git a/src/libstdcrypto/md5_final.c b/src/libstdcrypto/md5_final.c index 1512ebc..1ecdedf 100644 --- a/src/libstdcrypto/md5_final.c +++ b/src/libstdcrypto/md5_final.c @@ -1,5 +1,6 @@ /* ISC license. */ +#include #include #include #include @@ -15,7 +16,7 @@ void md5_final (MD5Schedule *ctx, char *digest /* 16 chars */) { byte_zero(p, count) ; uint32_little_endian((char *)ctx->in, 16) ; - md5_transform(ctx->buf, (uint32 *)ctx->in) ; + md5_transform(ctx->buf, (uint32_t *)ctx->in) ; byte_zero(ctx->in, 56) ; } else byte_zero(p, count - 8) ; @@ -24,7 +25,7 @@ void md5_final (MD5Schedule *ctx, char *digest /* 16 chars */) byte_copy((char *)ctx->in + 56, 4, (char *)&ctx->bits[0]) ; byte_copy((char *)ctx->in + 60, 4, (char *)&ctx->bits[1]) ; - md5_transform(ctx->buf, (uint32 *)ctx->in) ; + md5_transform(ctx->buf, (uint32_t *)ctx->in) ; uint32_little_endian((char *)ctx->buf, 4) ; byte_copy(digest, 16, (char *)ctx->buf) ; } -- cgit v1.3.1