Commit 3411df4e authored by Andrew Morton's avatar Andrew Morton Committed by Linus Torvalds

[PATCH] NFS: older gcc's don't like unsized arrays

The NFS symlink code cleanup causes older gcc's to barf.
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent f409ac77
...@@ -36,7 +36,7 @@ ...@@ -36,7 +36,7 @@
struct nfs_symlink { struct nfs_symlink {
struct page *page; struct page *page;
char body[]; char body[0];
}; };
static int nfs_symlink_filler(struct inode *inode, struct page *page) static int nfs_symlink_filler(struct inode *inode, struct page *page)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment