diff options
author | Matthew Wilcox <matthew@wil.cx> | 2006-09-19 16:44:38 -0600 |
---|---|---|
committer | Matthew Wilcox <willy@parisc-linux.org> | 2006-10-04 06:50:37 -0600 |
commit | 32f468139209459c3293a0895cf5b8e66ccc30a5 (patch) | |
tree | 0946403b7666a323a65981d4f803483b55620ebb /arch/parisc/hpux/fs.c | |
parent | 01232e932988fcf6ad87be49f69e633dd652a46d (diff) | |
download | blackbird-obmc-linux-32f468139209459c3293a0895cf5b8e66ccc30a5.tar.gz blackbird-obmc-linux-32f468139209459c3293a0895cf5b8e66ccc30a5.zip |
[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.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/parisc/hpux/fs.c b/arch/parisc/hpux/fs.c index 6e79dbf3f6bd..2d58b92b57e3 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; |