aboutsummaryrefslogtreecommitdiff
path: root/src/microhttpd/md5.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/microhttpd/md5.h')
-rw-r--r--src/microhttpd/md5.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/microhttpd/md5.h b/src/microhttpd/md5.h
index 655b9f72..819d515d 100644
--- a/src/microhttpd/md5.h
+++ b/src/microhttpd/md5.h
@@ -27,7 +27,7 @@
27struct MD5Context 27struct MD5Context
28{ 28{
29 uint32_t state[4]; /* state */ 29 uint32_t state[4]; /* state */
30 uint64_t count; /* number of bits, mod 2^64 */ 30 uint64_t count; /* number of bytes, mod 2^64 */
31 uint8_t buffer[MD5_BLOCK_SIZE]; /* input buffer */ 31 uint8_t buffer[MD5_BLOCK_SIZE]; /* input buffer */
32}; 32};
33 33