X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/9486289ce452ab82ca8b3f16fae8c2ef5247a923..1e8ae5ede66ba337ba6abbb4afad2b3319c1db74:/md4.c diff --git a/md4.c b/md4.c index a12a5ded..9fc08254 100644 --- a/md4.c +++ b/md4.c @@ -102,7 +102,7 @@ ** Assumes X is an array of 16 ints. ** The macro revx reverses the byte-ordering of the next word of X. */ - void MDreverse(X) +static void MDreverse(X) unsigned int32 *X; { register unsigned int32 t; register unsigned int i; @@ -225,7 +225,7 @@ /* Process data */ if (count == 512) { /* Full block of data to handle */ - MDblock(MDp,(unsigned int *)X); + MDblock(MDp,(unsigned int32 *)X); } else if (count > 512) /* Check for count too large */ { rprintf(FERROR,"\nError: MDupdate called with illegal count value %d."