From: Kovarththanan Rajaratnam Date: Mon, 22 Feb 2010 21:30:23 +0000 (+0100) Subject: Remove incorrect assumption X-Git-Tag: v3.0pre0~55^2~2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=936dc017bd4d60d4c6ccb3b385863dc2c3498f84;p=thirdparty%2Fccache.git Remove incorrect assumption This first revision of this file assummed that int = 32bits, but we now use and no longer have to make that (incorrect) assumption. --- diff --git a/mdfour.c b/mdfour.c index c3483f6eb..38dfe7879 100644 --- a/mdfour.c +++ b/mdfour.c @@ -21,10 +21,7 @@ #include -/* NOTE: This code makes no attempt to be fast! - - It assumes that a int is at least 32 bits long -*/ +/* NOTE: This code makes no attempt to be fast! */ static struct mdfour *m;