Index: linux-2.6.15-rc5-mm2/mm/slab.c
===================================================================
--- linux-2.6.15-rc5-mm2.orig/mm/slab.c	2005-12-13 14:27:08.000000000 -0800
+++ linux-2.6.15-rc5-mm2/mm/slab.c	2005-12-13 14:30:47.000000000 -0800
@@ -265,11 +265,10 @@ struct array_cache {
 	unsigned int batchcount;
 	unsigned int touched;
 	spinlock_t lock;
-	void *entry[0];		/*
+	void *entry[];		/*
 				 * Must have this definition in here for the proper
 				 * alignment of array_cache. Also simplifies accessing
 				 * the entries.
-				 * [0] is for gcc 2.95. It should really be [].
 				 */
 };