diff options
author | Andrew Morton <akpm@linux-foundation.org> | 2007-07-17 07:04:34 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-07-17 13:23:06 -0400 |
commit | 12127498c8f5e479df15ee374a0932f5659df49e (patch) | |
tree | c302d248b5e6093a7ce5741abc9dc111782c98bf /fs | |
parent | 019ab801cf32381b90cbe0144cc5695aed0e408c (diff) |
nfsd warning fix
gcc-4.3:
fs/nfsd/nfsctl.c: In function 'write_getfs':
fs/nfsd/nfsctl.c:248: warning: cast from pointer to integer of different size
Cc: Neil Brown <neilb@suse.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/nfsd/nfsctl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/nfsd/nfsctl.c b/fs/nfsd/nfsctl.c index 71c686dc7257..5ab80edc795b 100644 --- a/fs/nfsd/nfsctl.c +++ b/fs/nfsd/nfsctl.c | |||
@@ -245,7 +245,7 @@ static ssize_t write_getfs(struct file *file, char *buf, size_t size) | |||
245 | } | 245 | } |
246 | exp_readunlock(); | 246 | exp_readunlock(); |
247 | if (err == 0) | 247 | if (err == 0) |
248 | err = res->fh_size + (int)&((struct knfsd_fh*)0)->fh_base; | 248 | err = res->fh_size + offsetof(struct knfsd_fh, fh_base); |
249 | out: | 249 | out: |
250 | return err; | 250 | return err; |
251 | } | 251 | } |