diff options
author | Matthew Wilcox <matthew@wil.cx> | 2006-10-04 13:18:25 -0600 |
---|---|---|
committer | Matthew Wilcox <willy@hera.kernel.org> | 2006-10-05 01:48:17 +0000 |
commit | 15c130c1cde38da528f82efce882e8d7632f4d91 (patch) | |
tree | fe86db3b07930ed29db8642de35a552777b32437 /arch/parisc/hpux | |
parent | 17cca07237617a2d712eb44cffd8720055e61291 (diff) | |
download | linux-15c130c1cde38da528f82efce882e8d7632f4d91.tar.gz linux-15c130c1cde38da528f82efce882e8d7632f4d91.tar.bz2 linux-15c130c1cde38da528f82efce882e8d7632f4d91.zip |
[PA-RISC] Fix filldir warnings
filldir_t now takes a u64, not an ino_t.
Signed-off-by: Matthew Wilcox <matthew@wil.cx>
Diffstat (limited to 'arch/parisc/hpux')
-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 2d58b92b57e3..4204cd1f3cf9 100644 --- a/arch/parisc/hpux/fs.c +++ b/arch/parisc/hpux/fs.c @@ -73,7 +73,7 @@ struct getdents_callback { #define ROUND_UP(x) (((x)+sizeof(long)-1) & ~(sizeof(long)-1)) static int filldir(void * __buf, const char * name, int namlen, loff_t offset, - ino_t ino, unsigned d_type) + u64 ino, unsigned d_type) { struct hpux_dirent * dirent; struct getdents_callback * buf = (struct getdents_callback *) __buf; |