Older gcc's don't like this.

fs/nfs/nfs4proc.c:2194: field `data' has incomplete type


Signed-off-by: Andrew Morton <akpm@osdl.org>
---

 25-akpm/fs/nfs/nfs4proc.c |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)

diff -puN fs/nfs/nfs4proc.c~nfs4-empty-array-fix fs/nfs/nfs4proc.c
--- 25/fs/nfs/nfs4proc.c~nfs4-empty-array-fix	2005-03-23 23:33:38.000000000 -0800
+++ 25-akpm/fs/nfs/nfs4proc.c	2005-03-23 23:33:42.000000000 -0800
@@ -2191,7 +2191,7 @@ static void buf_to_pages(const void *buf
 struct nfs4_cached_acl {
 	int cached;
 	size_t len;
-	char data[];
+	char data[0];
 };
 
 static void nfs4_set_cached_acl(struct inode *inode, struct nfs4_cached_acl *acl)
_