From: Andrew Tridgell Date: Tue, 27 Oct 1998 14:19:35 +0000 (+0000) Subject: fixed a typecast X-Git-Tag: v2.2.0~41 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a9685611e2de3d1f02f4e97692432c7b17bb959f;p=thirdparty%2Frsync.git 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."