You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-full-overlay/app-misc/egads/files/egads-0.9.5-make-build-work...

17 lines
549 B

Clang16 does not allow K&R C function declarations by default. This changes the declaration to a modern C function declaration.
Signed-off-by: Pascal Jäger <pascal.jaeger@leimstift.de>
--- a/sha1.c
+++ b/sha1.c
@@ -131,8 +131,7 @@ void SHAInit(SHA_CTX *shsInfo)
Note that this corrupts the shsInfo->data area */
-static void SHSTransform( digest, data )
- UINT4 *digest, *data ;
+static void SHSTransform(UINT4 *digest,UINT4 *data)
{
UINT4 A, B, C, D, E; /* Local vars */
UINT4 eData[ 16 ]; /* Expanded data */