Correct one more errant whitespace nit that crept in during changes

in the arguments to vn_rdwr().  Hopefully the last.
This commit is contained in:
Robert Watson 2002-08-20 02:21:38 +00:00
parent b4edfededd
commit 0a9b91cde1
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=102161

View File

@ -380,7 +380,7 @@ cpu_coredump(td, vp, cred)
return error;
error = vn_rdwr(UIO_WRITE, vp, (caddr_t) td->td_kstack,
ctob(KSTACK_PAGES), (off_t)0,
UIO_SYSSPACE, IO_UNIT, cred, NOCRED,(int *)NULL, td);
UIO_SYSSPACE, IO_UNIT, cred, NOCRED, (int *)NULL, td);
return error;
}