--- disk-utils/fsck.cramfs.c.orig 2004-12-14 18:44:35.217188689 +0100 +++ disk-utils/fsck.cramfs.c 2004-12-14 18:43:49.659671205 +0100 @@ -76,16 +76,7 @@ #define PAD_SIZE 512 -#include -#ifdef PAGE_SIZE -#define PAGE_CACHE_SIZE ((int) PAGE_SIZE) -#elif defined __ia64__ -#define PAGE_CACHE_SIZE (16384) -#elif defined __alpha__ -#define PAGE_CACHE_SIZE (8192) -#else #define PAGE_CACHE_SIZE (4096) -#endif /* Guarantee access to at least 8kB at a time */ #define ROMBUFFER_BITS 13 @@ -95,7 +86,7 @@ static unsigned long read_buffer_block = ~0UL; /* Uncompressing data structures... */ -static char outbuffer[PAGE_CACHE_SIZE*2]; +static char outbuffer[PAGE_CACHE_SIZE * 2]; z_stream stream; #endif /* INCLUDE_FS_TESTS */