diff options
author | Robert Watson <rwatson@FreeBSD.org> | 2004-07-12 14:11:26 +0000 |
---|---|---|
committer | Robert Watson <rwatson@FreeBSD.org> | 2004-07-12 14:11:26 +0000 |
commit | ee3c585ae5f05458c2c38a8848940ca1661f3793 (patch) | |
tree | 7ebbcc0c8e842e2308ec2e429d04414882fd822a /sys/fs/coda | |
parent | 8d49c1a85c3af8c6a05fb7d459e699c36d5b9f97 (diff) | |
download | src-ee3c585ae5f05458c2c38a8848940ca1661f3793.tar.gz src-ee3c585ae5f05458c2c38a8848940ca1661f3793.zip |
Remove 'td = curthread' that shadows the arguments to coda_root().
Missed by: alfred
Notes
Notes:
svn path=/head/; revision=132037
Diffstat (limited to 'sys/fs/coda')
-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 09025d57b731..de84eb076f1d 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; |