commit 5194dd1615286342a1fbd137028fb1bc831234ba
parent 41db082e8acc77ae4946aef8ab7343f4c925ce48
Author: Evgeny Grin (Karlson2k) <k2k@narod.ru>
Date: Mon, 15 Apr 2019 22:19:50 +0300
MD5: fixed declaration
Diffstat:
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/microhttpd/md5.c b/src/microhttpd/md5.c
@@ -96,7 +96,7 @@ MD5Pad (struct MD5Context *ctx)
*/
void
MD5Final (void *ctx_,
- unsigned char digest[MD5_DIGEST_SIZE])
+ uint8_t digest[MD5_DIGEST_SIZE])
{
struct MD5Context *ctx = ctx_;
int i;
diff --git a/src/microhttpd/md5.h b/src/microhttpd/md5.h
@@ -61,7 +61,7 @@ MD5Update (void *ctx_,
*/
void
MD5Final (void *ctx_,
- unsigned char digest[MD5_DIGEST_SIZE]);
+ uint8_t digest[MD5_DIGEST_SIZE]);
#endif /* !MHD_MD5_H */