diff options
author | rwatson <rwatson@FreeBSD.org> | 2004-07-12 14:11:26 +0000 |
---|---|---|
committer | rwatson <rwatson@FreeBSD.org> | 2004-07-12 14:11:26 +0000 |
commit | 2fbca9279f6bb1b62f2a750ba656ab4c5b86e44b (patch) | |
tree | 7ebbcc0c8e842e2308ec2e429d04414882fd822a /sys/fs | |
parent | 5961a5ef84f9696d6a6212efdf2e6e8465289009 (diff) | |
download | FreeBSD-src-2fbca9279f6bb1b62f2a750ba656ab4c5b86e44b.zip FreeBSD-src-2fbca9279f6bb1b62f2a750ba656ab4c5b86e44b.tar.gz |
Remove 'td = curthread' that shadows the arguments to coda_root().
Missed by: alfred
Diffstat (limited to 'sys/fs')
-rw-r--r-- | sys/fs/coda/coda_vfsops.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sys/fs/coda/coda_vfsops.c b/sys/fs/coda/coda_vfsops.c index 09025d5..de84eb0 100644 --- a/sys/fs/coda/coda_vfsops.c +++ b/sys/fs/coda/coda_vfsops.c @@ -288,7 +288,6 @@ coda_root(vfsp, vpp, td) struct coda_mntinfo *mi = vftomi(vfsp); struct vnode **result; int error; - struct thread *td = curthread; /* XXX - bnoble */ struct proc *p = td->td_proc; CodaFid VFid; static const CodaFid invalfid = INVAL_FID; |