]> git.ipfire.org Git - thirdparty/ccache.git/commitdiff
Remove incorrect assumption
authorKovarththanan Rajaratnam <kovarththanan.rajaratnam@gmail.com>
Mon, 22 Feb 2010 21:30:23 +0000 (22:30 +0100)
committerKovarththanan Rajaratnam <kovarththanan.rajaratnam@gmail.com>
Mon, 22 Feb 2010 22:02:22 +0000 (23:02 +0100)
This first revision of this file assummed that int = 32bits, but we now use <inttypes.h> and no longer have to make that (incorrect) assumption.

mdfour.c

index c3483f6eb2cd60eebffd3ac01a7b6c22b3067935..38dfe7879044e4a28b6577f74d810035db118e2a 100644 (file)
--- a/mdfour.c
+++ b/mdfour.c
 
 #include <string.h>
 
-/* 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;