diff options
Diffstat (limited to 'src/libstdcrypto/md5_update.c')
-rw-r--r-- | src/libstdcrypto/md5_update.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstdcrypto/md5_update.c b/src/libstdcrypto/md5_update.c index 63fdea3..c03a598 100644 --- a/src/libstdcrypto/md5_update.c +++ b/src/libstdcrypto/md5_update.c @@ -5,7 +5,7 @@ #include <skalibs/md5.h> #include "md5-internal.h" -void md5_update (MD5Schedule_ref ctx, char const *s, unsigned int len) +void md5_update (MD5Schedule *ctx, char const *s, unsigned int len) { register uint32 t = ctx->bits[0] ; if ((ctx->bits[0] = t + (len << 3)) < t) |