From: Andrew Tridgell Date: Tue, 27 Oct 1998 14:19:35 +0000 (+0000) Subject: fixed a typecast X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/a9685611e2de3d1f02f4e97692432c7b17bb959f fixed a typecast --- diff --git a/md4.c b/md4.c index 0ab25013..9fc08254 100644 --- a/md4.c +++ b/md4.c @@ -225,7 +225,7 @@ static void MDreverse(X) /* 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."