[PATCH v2 4/6] cpukit/libmd/md5.c: fix warning
Matthew Joyce
matthew.joyce at embedded-brains.de
Fri Jun 10 13:34:57 UTC 2022
From: Matt Joyce <matthew.joyce at embedded-brains.de>
Specify array size in parameter to match function prototype. This
fixes a new warning in gcc 12.
Updates #4662
---
cpukit/libmd/md5.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/cpukit/libmd/md5.c b/cpukit/libmd/md5.c
index 4c909f37a0..5e3a100c7b 100644
--- a/cpukit/libmd/md5.c
+++ b/cpukit/libmd/md5.c
@@ -165,7 +165,7 @@ void MD5Update (
ends with the desired message digest in mdContext->digest[0...15].
*/
void MD5Final (
- unsigned char hash[],
+ unsigned char hash[16],
MD5_CTX *mdContext )
{
UINT4 in[16];
--
2.31.1
More information about the devel
mailing list