From a9685611e2de3d1f02f4e97692432c7b17bb959f Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Tue, 27 Oct 1998 14:19:35 +0000 Subject: [PATCH] fixed a typecast --- md4.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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." -- 2.34.1