gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] [libmicrohttpd] 03/06: MD5: fixed declaration


From: gnunet
Subject: [GNUnet-SVN] [libmicrohttpd] 03/06: MD5: fixed declaration
Date: Tue, 16 Apr 2019 09:59:48 +0200

This is an automated email from the git hooks/post-receive script.

karlson2k pushed a commit to branch master
in repository libmicrohttpd.

commit 5194dd1615286342a1fbd137028fb1bc831234ba
Author: Evgeny Grin (Karlson2k) <address@hidden>
AuthorDate: Mon Apr 15 22:19:50 2019 +0300

    MD5: fixed declaration
---
 src/microhttpd/md5.c | 2 +-
 src/microhttpd/md5.h | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/microhttpd/md5.c b/src/microhttpd/md5.c
index 4d747c18..a9e52935 100644
--- 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
index 3bbfd79e..655b9f72 100644
--- 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 */

-- 
To stop receiving notification emails like this one, please contact
address@hidden



reply via email to

[Prev in Thread] Current Thread [Next in Thread]