diff options
author | phk <phk@FreeBSD.org> | 2002-05-14 11:09:43 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 2002-05-14 11:09:43 +0000 |
commit | 8536ea3cdb9df8dae9c229a6a08c8cd1dcc16ee0 (patch) | |
tree | 2bbba972edd4467a07189ae4827f761db93b7e6a /sys/fs/coda | |
parent | a7b5f92338acc96672ac266a52bf4b5db2f0ea1d (diff) | |
download | FreeBSD-src-8536ea3cdb9df8dae9c229a6a08c8cd1dcc16ee0.zip FreeBSD-src-8536ea3cdb9df8dae9c229a6a08c8cd1dcc16ee0.tar.gz |
Make daddr_t and u_daddr_t 64bits wide.
Retire daddr64_t and use daddr_t instead.
Sponsored by: DARPA & NAI Labs.
Diffstat (limited to 'sys/fs/coda')
-rw-r--r-- | sys/fs/coda/coda_vnops.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/fs/coda/coda_vnops.c b/sys/fs/coda/coda_vnops.c index c47d309..3cb9d26 100644 --- a/sys/fs/coda/coda_vnops.c +++ b/sys/fs/coda/coda_vnops.c @@ -1693,7 +1693,7 @@ coda_bmap(v) struct vnode *vp __attribute__((unused)) = ap->a_vp; /* file's vnode */ daddr_t bn __attribute__((unused)) = ap->a_bn; /* fs block number */ struct vnode **vpp = ap->a_vpp; /* RETURN vp of device */ - daddr64_t *bnp __attribute__((unused)) = ap->a_bnp; /* RETURN device block number */ + daddr_t *bnp __attribute__((unused)) = ap->a_bnp; /* RETURN device block number */ struct thread *td __attribute__((unused)) = curthread; /* upcall decl */ /* locals */ |