aboutsummaryrefslogtreecommitdiff
path: root/arch/parisc/hpux/fs.c
diff options
context:
space:
mode:
authorMatthew Wilcox <matthew@wil.cx>2006-09-19 16:44:38 -0600
committerMatthew Wilcox <willy@parisc-linux.org>2006-10-04 06:50:37 -0600
commit32f468139209459c3293a0895cf5b8e66ccc30a5 (patch)
tree0946403b7666a323a65981d4f803483b55620ebb /arch/parisc/hpux/fs.c
parent01232e932988fcf6ad87be49f69e633dd652a46d (diff)
[PARISC] Fix HPUX compat compile with current GCC
GCC no longer allows a cast as lvalue; fix the same way fs/readdir.c was Signed-off-by: Matthew Wilcox <matthew@wil.cx> Signed-off-by: Kyle McMartin <kyle@parisc-linux.org>
Diffstat (limited to 'arch/parisc/hpux/fs.c')
-rw-r--r--arch/parisc/hpux/fs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/parisc/hpux/fs.c b/arch/parisc/hpux/fs.c
index 6e79dbf3f6b..2d58b92b57e 100644
--- a/arch/parisc/hpux/fs.c
+++ b/arch/parisc/hpux/fs.c
@@ -96,7 +96,7 @@ static int filldir(void * __buf, const char * name, int namlen, loff_t offset,
put_user(namlen, &dirent->d_namlen);
copy_to_user(dirent->d_name, name, namlen);
put_user(0, dirent->d_name + namlen);
- ((char *) dirent) += reclen;
+ dirent = (void __user *)dirent + reclen;
buf->current_dir = dirent;
buf->count -= reclen;
return 0;